diff options
author | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-07-21 00:34:06 +0900 |
---|---|---|
committer | Silc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com> | 2023-09-29 08:23:57 +0900 |
commit | 1b95827d3ef244de322b0c16deb49fefe48ed1a1 (patch) | |
tree | db06582520fc1e0978ac0e0908b44cd6b4b9baa6 /scene/register_scene_types.cpp | |
parent | 545d1c0adbf340310e1531710eb31bd5267704d5 (diff) | |
download | redot-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.cpp | 5 |
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); |