diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-04-27 07:56:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-27 07:56:07 +0200 |
commit | 16468ea2e1474e416a210a6b7f87caee8670bf47 (patch) | |
tree | 0659c48ed13c190256e91585015ff6fdefe6ef40 /editor/editor_node.cpp | |
parent | 8121db871ad038444bd77ef2918cfc5b731e45f3 (diff) | |
parent | fb1d4be7bd200f7cca8d9a769c11854ad10e8c1c (diff) |
Merge pull request #59337 from fire-forge/raycast2d-editor
Add an editor handle for `RayCast2D.target_position`
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 6f3c45727a..2da871582a 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -172,6 +172,7 @@ #include "editor/plugins/physical_bone_3d_editor_plugin.h" #include "editor/plugins/polygon_2d_editor_plugin.h" #include "editor/plugins/polygon_3d_editor_plugin.h" +#include "editor/plugins/ray_cast_2d_editor_plugin.h" #include "editor/plugins/replication_editor_plugin.h" #include "editor/plugins/resource_preloader_editor_plugin.h" #include "editor/plugins/root_motion_editor_plugin.h" @@ -7068,6 +7069,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(ControlEditorPlugin)); add_editor_plugin(memnew(GradientTexture2DEditorPlugin)); add_editor_plugin(memnew(BitMapEditorPlugin)); + add_editor_plugin(memnew(RayCast2DEditorPlugin)); for (int i = 0; i < EditorPlugins::get_plugin_count(); i++) { add_editor_plugin(EditorPlugins::create(i)); |