diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-06-25 14:03:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-25 14:03:44 +0200 |
commit | dd3de622d8d32400955b77564be3442f77e3a204 (patch) | |
tree | 38724d39902f8e06bca10601b3a19595f80c5c60 /core/object/object.h | |
parent | c4f0062f15408988e743d65cb98dbb7347c29cf3 (diff) | |
parent | 6c1ac9f3bef9ff1026127bb76d44d1019887eeaf (diff) |
Merge pull request #62372 from MarcusElg/nosliderrename
Rename @export_range's noslider option to no_slider
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h index fe9231cfd8..2a9f2ebf93 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -47,7 +47,7 @@ enum PropertyHint { PROPERTY_HINT_NONE, ///< no hint provided. - PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_lesser][,noslider][,radians][,degrees][,exp][,suffix:<keyword>] range. + PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_lesser][,no_slider][,radians][,degrees][,exp][,suffix:<keyword>] range. PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_ENUM_SUGGESTION, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_EXP_EASING, /// exponential easing function (Math::ease) use "attenuation" hint string to revert (flip h), "full" to also include in/out. (ie: "attenuation,inout") |