aboutsummaryrefslogtreecommitdiff
path: root/scene/register_scene_types.cpp
diff options
context:
space:
mode:
authorJuan Linietsky2018-06-25 16:50:33 -0300
committerGitHub2018-06-25 16:50:33 -0300
commit87f48e7a3ee7bbfbc746e9df3fcff68917ae5f76 (patch)
treebfc1ff133073c9679f9ad52ee5ca105087d39e59 /scene/register_scene_types.cpp
parent5b035107e3bae3f34f46935bc593569aad3fbca7 (diff)
parent0f7c35f95561c41648415c370005093827e5e445 (diff)
downloadgodot-87f48e7a3ee7bbfbc746e9df3fcff68917ae5f76.tar.gz
godot-87f48e7a3ee7bbfbc746e9df3fcff68917ae5f76.tar.zst
godot-87f48e7a3ee7bbfbc746e9df3fcff68917ae5f76.zip
Merge pull request #19720 from karroffel/blendspace-1d
add BlendSpace1D animation node
Diffstat (limited to 'scene/register_scene_types.cpp')
-rw-r--r--scene/register_scene_types.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/scene/register_scene_types.cpp b/scene/register_scene_types.cpp
index 5708d3fb4..e7cde8ddb 100644
--- a/scene/register_scene_types.cpp
+++ b/scene/register_scene_types.cpp
@@ -63,7 +63,8 @@
#include "scene/2d/tile_map.h"
#include "scene/2d/visibility_notifier_2d.h"
#include "scene/2d/y_sort.h"
-#include "scene/animation/animation_blend_space.h"
+#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_graph_player.h"
#include "scene/animation/animation_node_state_machine.h"
@@ -390,7 +391,8 @@ void register_scene_types() {
ClassDB::register_class<AnimationNode>();
ClassDB::register_class<AnimationRootNode>();
ClassDB::register_class<AnimationNodeBlendTree>();
- ClassDB::register_class<AnimationNodeBlendSpace>();
+ ClassDB::register_class<AnimationNodeBlendSpace1D>();
+ ClassDB::register_class<AnimationNodeBlendSpace2D>();
ClassDB::register_class<AnimationNodeStateMachine>();
ClassDB::register_class<AnimationNodeStateMachineTransition>();
ClassDB::register_class<AnimationNodeOutput>();