Add range hint for ViewportContainer.stretch_shrink
This commit is contained in:
parent
1bfb788c4f
commit
d655fc8fed
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ void ViewportContainer::_bind_methods() {
|
||||||
ClassDB::bind_method(D_METHOD("get_stretch_shrink"), &ViewportContainer::get_stretch_shrink);
|
ClassDB::bind_method(D_METHOD("get_stretch_shrink"), &ViewportContainer::get_stretch_shrink);
|
||||||
|
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "stretch"), "set_stretch", "is_stretch_enabled");
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "stretch"), "set_stretch", "is_stretch_enabled");
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "stretch_shrink"), "set_stretch_shrink", "get_stretch_shrink");
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "stretch_shrink", PROPERTY_HINT_RANGE, "1,32,1,or_greater"), "set_stretch_shrink", "get_stretch_shrink");
|
||||||
}
|
}
|
||||||
|
|
||||||
ViewportContainer::ViewportContainer() {
|
ViewportContainer::ViewportContainer() {
|
||||||
|
|
Loading…
Reference in a new issue