Add vector value linking

Co-authored-by: redlamp <244062+redlamp@users.noreply.github.com>
This commit is contained in:
kobewi 2022-04-05 02:58:21 +02:00
parent c704b94faa
commit 5553e27fe8
9 changed files with 312 additions and 76 deletions

View file

@ -478,6 +478,10 @@ void Control::_validate_property(PropertyInfo &property) const {
}
}
if (property.name == "scale") {
property.hint = PROPERTY_HINT_LINK;
}
// Validate which positioning properties should be displayed depending on the parent and the layout mode.
Node *parent_node = get_parent_control();
if (!parent_node) {