summaryrefslogtreecommitdiffstats
path: root/scene/animation/animation_blend_tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/animation/animation_blend_tree.h')
-rw-r--r--scene/animation/animation_blend_tree.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/scene/animation/animation_blend_tree.h b/scene/animation/animation_blend_tree.h
index 68afdf04b3..7623fd3e57 100644
--- a/scene/animation/animation_blend_tree.h
+++ b/scene/animation/animation_blend_tree.h
@@ -3,9 +3,9 @@
#include "scene/animation/animation_graph_player.h"
-class AnimationNodeAnimation : public AnimationNode {
+class AnimationNodeAnimation : public AnimationRootNode {
- GDCLASS(AnimationNodeAnimation, AnimationNode);
+ GDCLASS(AnimationNodeAnimation, AnimationRootNode);
StringName animation;
@@ -266,8 +266,8 @@ public:
/////
-class AnimationNodeBlendTree : public AnimationNode {
- GDCLASS(AnimationNodeBlendTree, AnimationNode)
+class AnimationNodeBlendTree : public AnimationRootNode {
+ GDCLASS(AnimationNodeBlendTree, AnimationRootNode)
Map<StringName, Ref<AnimationNode> > nodes;