summaryrefslogtreecommitdiffstats
path: root/scene/register_scene_types.cpp
diff options
context:
space:
mode:
authorSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-07-21 00:34:06 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-09-29 08:23:57 +0900
commit1b95827d3ef244de322b0c16deb49fefe48ed1a1 (patch)
treedb06582520fc1e0978ac0e0908b44cd6b4b9baa6 /scene/register_scene_types.cpp
parent545d1c0adbf340310e1531710eb31bd5267704d5 (diff)
downloadredot-engine-1b95827d3ef244de322b0c16deb49fefe48ed1a1.tar.gz
Implement AnimationManager the base class of AnimationPlayer/Tree
Diffstat (limited to 'scene/register_scene_types.cpp')
-rw-r--r--scene/register_scene_types.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/scene/register_scene_types.cpp b/scene/register_scene_types.cpp
index 03085edb86..b7c98b0ea9 100644
--- a/scene/register_scene_types.cpp
+++ b/scene/register_scene_types.cpp
@@ -74,6 +74,7 @@
#include "scene/animation/animation_blend_space_1d.h"
#include "scene/animation/animation_blend_space_2d.h"
#include "scene/animation/animation_blend_tree.h"
+#include "scene/animation/animation_mixer.h"
#include "scene/animation/animation_node_state_machine.h"
#include "scene/animation/animation_player.h"
#include "scene/animation/animation_tree.h"
@@ -454,8 +455,6 @@ void register_scene_types() {
#endif
/* REGISTER ANIMATION */
-
- GDREGISTER_CLASS(AnimationPlayer);
GDREGISTER_CLASS(Tween);
GDREGISTER_ABSTRACT_CLASS(Tweener);
GDREGISTER_CLASS(PropertyTweener);
@@ -463,6 +462,8 @@ void register_scene_types() {
GDREGISTER_CLASS(CallbackTweener);
GDREGISTER_CLASS(MethodTweener);
+ GDREGISTER_ABSTRACT_CLASS(AnimationMixer);
+ GDREGISTER_CLASS(AnimationPlayer);
GDREGISTER_CLASS(AnimationTree);
GDREGISTER_CLASS(AnimationNode);
GDREGISTER_CLASS(AnimationRootNode);