diff options
author | Ferenc Arn <tagcup@yahoo.com> | 2017-05-24 16:47:34 -0500 |
---|---|---|
committer | Ferenc Arn <tagcup@yahoo.com> | 2017-05-24 17:09:53 -0500 |
commit | fdf301e78bd41415b30d1b2f55eadcd515aaa78d (patch) | |
tree | d349477804ef8b5b5b01241e63c3593113c03da4 /editor/editor_node.cpp | |
parent | 2e3145de65257ed39a5d01c5592ea0fb90cd00ba (diff) |
Revive PathEditorPlugin.
Adapted the plugin to recent changes in input classes and pool arrays.
Fixed an out-of-bounds bug in the process.
Doesn't display anything for a single point (existing issue).
Diffstat (limited to 'editor/editor_node.cpp')
-rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 4ecb292027..514585688f 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -5988,7 +5988,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(Particles2DEditorPlugin(this))); add_editor_plugin(memnew(GIProbeEditorPlugin(this))); add_editor_plugin(memnew(Path2DEditorPlugin(this))); - //add_editor_plugin( memnew( PathEditorPlugin(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))); |