diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-05-25 01:46:45 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-05-25 01:47:02 -0300 |
commit | f36e7dcb405ead38c33d808f732fd7b4e23d19e5 (patch) | |
tree | c9c32ce63935fbb3670ae51b921d1a0d1992256f /core/object.h | |
parent | f8f3362cab16ddfbc1d954ecadbccd4838200769 (diff) | |
download | redot-engine-f36e7dcb405ead38c33d808f732fd7b4e23d19e5.tar.gz |
improved animation editor
-same-value link keys
-new layout
-forward, backwards playback
-integrated curve/property editor
-auto increment sprite frame after insert
-copy & paste animation resoucres
Diffstat (limited to 'core/object.h')
-rw-r--r-- | core/object.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/object.h b/core/object.h index fc64b91412..8d1f8ebc5a 100644 --- a/core/object.h +++ b/core/object.h @@ -54,6 +54,7 @@ enum PropertyHint { PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_EXP_EASING, /// exponential easing funciton (Math::ease) PROPERTY_HINT_LENGTH, ///< hint_text= "length" (as integer) + PROPERTY_HINT_SPRITE_FRAME, PROPERTY_HINT_KEY_ACCEL, ///< hint_text= "length" (as integer) PROPERTY_HINT_FLAGS, ///< hint_text= "flag1,flag2,etc" (as bit flags) PROPERTY_HINT_ALL_FLAGS, @@ -448,6 +449,7 @@ protected: DVector<String> _get_meta_list_bind() const; Array _get_property_list_bind() const; + Array _get_method_list_bind() const; public: //should be protected, but bug in clang++ static void initialize_type(); |