diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-02 00:17:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 00:17:21 +0200 |
commit | a2459c7d35eeaeea8b1d4fa9ce6c9cbe74f11643 (patch) | |
tree | c52f05eddaf57d2b54e4df061ecf354a8b3ea133 /editor/editor_node.cpp | |
parent | d67691fbd6c1335caf523a2601450733bb4f101f (diff) | |
parent | dc43cfc830e7e602ad5aa1f59ceaa82e344dd378 (diff) |
Merge pull request #61610 from TokageItLab/importer-retarget-registered-gdhumanoid
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index e3caaf93c6..7697bbfdf4 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -134,6 +134,7 @@ #include "editor/plugins/audio_stream_editor_plugin.h" #include "editor/plugins/audio_stream_randomizer_editor_plugin.h" #include "editor/plugins/bit_map_editor_plugin.h" +#include "editor/plugins/bone_map_editor_plugin.h" #include "editor/plugins/camera_3d_editor_plugin.h" #include "editor/plugins/canvas_item_editor_plugin.h" #include "editor/plugins/collision_polygon_2d_editor_plugin.h" @@ -7144,6 +7145,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(GradientTexture2DEditorPlugin)); add_editor_plugin(memnew(BitMapEditorPlugin)); add_editor_plugin(memnew(RayCast2DEditorPlugin)); + add_editor_plugin(memnew(BoneMapEditorPlugin)); for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) { add_editor_plugin(EditorPlugins::create(i)); |