diff options
author | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 11:53:29 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2014-09-17 11:53:29 -0300 |
commit | fa004d5c0fb79e59f81d53ab8f53906a930a8453 (patch) | |
tree | d36a10e4758c5ef93daab7f69a9647d44998d355 /scene/animation | |
parent | 64b01d6ce04350ad9d0cf36bf489426ff7ccd40c (diff) |
Small Fixes
-----------
-Added Ability for centering on top left for centercontainer
-Added ability to bind more than 5 parameters (must include an extra file)
Diffstat (limited to 'scene/animation')
-rw-r--r-- | scene/animation/tween.cpp | 1 | ||||
-rw-r--r-- | scene/animation/tween.h | 8 |
2 files changed, 4 insertions, 5 deletions
diff --git a/scene/animation/tween.cpp b/scene/animation/tween.cpp index f2df6d47c9..7e7d57c3c2 100644 --- a/scene/animation/tween.cpp +++ b/scene/animation/tween.cpp @@ -27,6 +27,7 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ #include "tween.h" +#include "method_bind_ext.inc" bool Tween::_set(const StringName& p_name, const Variant& p_value) { diff --git a/scene/animation/tween.h b/scene/animation/tween.h index 51d5fc9132..c9d9863397 100644 --- a/scene/animation/tween.h +++ b/scene/animation/tween.h @@ -54,17 +54,15 @@ public: TRANS_CIRC, TRANS_BOUNCE, TRANS_BACK, - - TRANS_COUNT, + TRANS_COUNT, }; enum EaseType { EASE_IN, EASE_OUT, EASE_IN_OUT, - EASE_OUT_IN, - - EASE_COUNT, + EASE_OUT_IN, + EASE_COUNT, }; private: |