diff options
| author | Thomas Herzog | 2018-06-22 21:52:13 +0200 |
|---|---|---|
| committer | Thomas Herzog | 2018-06-25 21:46:12 +0200 |
| commit | 0f7c35f95561c41648415c370005093827e5e445 (patch) | |
| tree | 4add152241bc0af4bfb34a4bab8654f6b16be1e2 /editor/editor_node.cpp | |
| parent | 84252f2ec48380840284b097f6bbfedf86040e44 (diff) | |
| download | godot-0f7c35f95561c41648415c370005093827e5e445.tar.gz godot-0f7c35f95561c41648415c370005093827e5e445.tar.zst godot-0f7c35f95561c41648415c370005093827e5e445.zip | |
Diffstat (limited to 'editor/editor_node.cpp')
| -rw-r--r-- | editor/editor_node.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 0cf5e94f4..67e1ca79f 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -66,7 +66,8 @@ #include "editor/import/resource_importer_scene.h" #include "editor/import/resource_importer_texture.h" #include "editor/import/resource_importer_wav.h" -#include "editor/plugins/animation_blend_space2d_editor.h" +#include "editor/plugins/animation_blend_space_1d_editor.h" +#include "editor/plugins/animation_blend_space_2d_editor.h" #include "editor/plugins/animation_blend_tree_editor_plugin.h" #include "editor/plugins/animation_player_editor_plugin.h" #include "editor/plugins/animation_state_machine_editor.h" @@ -5401,6 +5402,7 @@ EditorNode::EditorNode() { // FIXME: Disabled for Godot 3.0 as made incompatible, it needs to be ported to the new API. //add_editor_plugin(memnew(ShaderGraphEditorPlugin(this))); add_editor_plugin(memnew(AnimationNodeBlendTreeEditorPlugin(this))); + add_editor_plugin(memnew(AnimationNodeBlendSpace1DEditorPlugin(this))); add_editor_plugin(memnew(AnimationNodeBlendSpace2DEditorPlugin(this))); add_editor_plugin(memnew(AnimationNodeStateMachineEditorPlugin(this))); |
