diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-07-13 15:13:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 15:13:00 +0200 |
commit | b44b277f6f2f22124c47d63551591056791474c0 (patch) | |
tree | 70b5469ea91760f759b232417da845f82ebe847b /core/object/object.h | |
parent | 9e0e74e58e84374050a35ad33f60855bab6e9bdd (diff) | |
parent | 4ee0e6ddf552fd82fffb5f2895a6f05c978144ad (diff) |
Merge pull request #50169 from pycbouh/theme-type-variations
Diffstat (limited to 'core/object/object.h')
-rw-r--r-- | core/object/object.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/object/object.h b/core/object/object.h index 8389d80afc..33d9b627f6 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -60,6 +60,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_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") PROPERTY_HINT_LENGTH, ///< hint_text= "length" (as integer) PROPERTY_HINT_KEY_ACCEL, ///< hint_text= "length" (as integer) |