summaryrefslogtreecommitdiff
path: root/scene/animation
diff options
context:
space:
mode:
Diffstat (limited to 'scene/animation')
-rw-r--r--scene/animation/tween.cpp1
-rw-r--r--scene/animation/tween.h8
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: