diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2017-02-12 23:30:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 23:30:04 +0100 |
commit | 117a83fcb916cb02777dea73fb642216fd2e1d79 (patch) | |
tree | 1c50d003af87ab2fe00a73ef23e90e7ef97fdb3e /tools/editor/editor_node.cpp | |
parent | 37e75873ef88443a565d371ec638f554d92d4293 (diff) | |
parent | e2fba10b952f694f604e20b9e5f220023a5f8fd2 (diff) |
Merge pull request #7352 from Zylann/polyline
Polyline
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r-- | tools/editor/editor_node.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 952681c5eb..9fac8dfbeb 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -87,6 +87,7 @@ #include "plugins/script_editor_plugin.h" #include "plugins/script_text_editor.h" #include "plugins/path_2d_editor_plugin.h" +#include "plugins/line_2d_editor_plugin.h" #include "plugins/particles_editor_plugin.h" #include "plugins/particles_2d_editor_plugin.h" #include "plugins/animation_tree_editor_plugin.h" @@ -6350,6 +6351,7 @@ EditorNode::EditorNode() { add_editor_plugin( memnew( Path2DEditorPlugin(this) ) ); //add_editor_plugin( memnew( PathEditorPlugin(this) ) ); //add_editor_plugin( memnew( BakedLightEditorPlugin(this) ) ); + add_editor_plugin( memnew( Line2DEditorPlugin(this) ) ); add_editor_plugin( memnew( Polygon2DEditorPlugin(this) ) ); add_editor_plugin( memnew( LightOccluder2DEditorPlugin(this) ) ); add_editor_plugin( memnew( NavigationPolygonEditorPlugin(this) ) ); |