diff options
| author | Franklin Sobrinho | 2015-06-23 12:20:34 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2015-06-23 12:20:34 -0300 |
| commit | 5688b6157fc4c85719db3d3a6b8b5246738d82be (patch) | |
| tree | 603da8899de717c6540faf1d047f85281b5b4128 /tools/editor/editor_node.cpp | |
| parent | 8b61a3c358cc2ca68e12895c7243139be0301a85 (diff) | |
| download | godot-5688b6157fc4c85719db3d3a6b8b5246738d82be.tar.gz godot-5688b6157fc4c85719db3d3a6b8b5246738d82be.tar.zst godot-5688b6157fc4c85719db3d3a6b8b5246738d82be.zip | |
CollisionShape2D visual editor
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 f55a3d689..a513451b4 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -92,6 +92,7 @@ #include "plugins/navigation_polygon_editor_plugin.h" #include "plugins/light_occluder_2d_editor_plugin.h" #include "plugins/color_ramp_editor_plugin.h" +#include "plugins/collision_shape_2d_editor_plugin.h" // end #include "tools/editor/io_plugins/editor_texture_import_plugin.h" #include "tools/editor/io_plugins/editor_scene_import_plugin.h" @@ -5051,6 +5052,7 @@ EditorNode::EditorNode() { add_editor_plugin( memnew( LightOccluder2DEditorPlugin(this) ) ); add_editor_plugin( memnew( NavigationPolygonEditorPlugin(this) ) ); add_editor_plugin( memnew( ColorRampEditorPlugin(this) ) ); + add_editor_plugin( memnew( CollisionShape2DEditorPlugin(this) ) ); for(int i=0;i<EditorPlugins::get_plugin_count();i++) add_editor_plugin( EditorPlugins::create(i,this) ); |
