Add a property hint to StyleBoxFlat shadow_size
for editor usability
This adds a visible range to the slider so it can be dragged more easily.
This closes #42309.
(cherry picked from commit feb4002017
)
This commit is contained in:
parent
306ce02823
commit
a4651b59fb
1 changed files with 1 additions and 1 deletions
|
@ -941,7 +941,7 @@ void StyleBoxFlat::_bind_methods() {
|
|||
|
||||
ADD_GROUP("Shadow", "shadow_");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::COLOR, "shadow_color"), "set_shadow_color", "get_shadow_color");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "shadow_size"), "set_shadow_size", "get_shadow_size");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "shadow_size", PROPERTY_HINT_RANGE, "0,100,1,or_greater"), "set_shadow_size", "get_shadow_size");
|
||||
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "shadow_offset"), "set_shadow_offset", "get_shadow_offset");
|
||||
|
||||
ADD_GROUP("Anti Aliasing", "anti_aliasing_");
|
||||
|
|
Loading…
Reference in a new issue