aboutsummaryrefslogtreecommitdiff
path: root/scene/animation/animation_blend_tree.h
diff options
context:
space:
mode:
authorJuan Linietsky2018-06-21 15:45:44 -0300
committerJuan Linietsky2018-06-21 15:46:11 -0300
commita0719533bdc4e99a24bd02886fc77a29d5d30dfc (patch)
tree933787c538ee103a70f1fcb34ef5001fd903d8c2 /scene/animation/animation_blend_tree.h
parent0254616c37767aadec4bcbd1863313961ed820fb (diff)
downloadgodot-a0719533bdc4e99a24bd02886fc77a29d5d30dfc.tar.gz
godot-a0719533bdc4e99a24bd02886fc77a29d5d30dfc.tar.zst
godot-a0719533bdc4e99a24bd02886fc77a29d5d30dfc.zip
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 68afdf04b..7623fd3e5 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;