diff options
author | Juan Linietsky <reduzio@gmail.com> | 2018-05-15 17:12:35 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2018-05-15 17:14:31 -0300 |
commit | 005b69cf6e276209464cc8c36ebc7376679925b6 (patch) | |
tree | 2271a91a727cb9afcc2f58b4b91023f4a0a7f7f8 /core | |
parent | 3b8bd50b41e0197ab3bce653548715872a93ea80 (diff) |
-New inspector.
-Changed UI resizing code, gained huge amount of speed.
-Reorganized timer sync to clean up behavior (sorry forgot commit this before)
-
Diffstat (limited to 'core')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object.h b/core/object.h index c405e22557..7963a43fd6 100644 --- a/core/object.h +++ b/core/object.h @@ -55,7 +55,7 @@ enum PropertyHint { PROPERTY_HINT_RANGE, ///< hint_text = "min,max,step,slider; //slider is optional" PROPERTY_HINT_EXP_RANGE, ///< hint_text = "min,max,step", exponential edit PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc" - PROPERTY_HINT_EXP_EASING, /// exponential easing function (Math::ease) + 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_SPRITE_FRAME, PROPERTY_HINT_KEY_ACCEL, ///< hint_text= "length" (as integer) |