diff options
| author | Juan Linietsky | 2017-06-23 20:07:01 -0300 |
|---|---|---|
| committer | GitHub | 2017-06-23 20:07:01 -0300 |
| commit | 693eb0fa06a5be6e9664f7a413199f0100b7d289 (patch) | |
| tree | db94c76d34d51e9ec97213a08c9654825707fad4 /editor/editor_node.cpp | |
| parent | 00e5ba314393ce2cc4df883bc1742306007ed117 (diff) | |
| parent | 659897cfb8bda0377d798a6f73505d537e521cf9 (diff) | |
| download | godot-693eb0fa06a5be6e9664f7a413199f0100b7d289.tar.gz godot-693eb0fa06a5be6e9664f7a413199f0100b7d289.tar.zst godot-693eb0fa06a5be6e9664f7a413199f0100b7d289.zip | |
Merge pull request #8591 from Zylann/curve_1d
Added Curve resource
Diffstat (limited to '')
| -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 b700072db..2b29e4b08 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -6114,7 +6114,7 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(GradientEditorPlugin(this))); add_editor_plugin(memnew(GradientTextureEditorPlugin(this))); add_editor_plugin(memnew(CollisionShape2DEditorPlugin(this))); - add_editor_plugin(memnew(CurveTextureEditorPlugin(this))); + add_editor_plugin(memnew(CurveEditorPlugin(this))); add_editor_plugin(memnew(TextureEditorPlugin(this))); add_editor_plugin(memnew(AudioBusesEditorPlugin(audio_bus_editor))); //add_editor_plugin( memnew( MaterialEditorPlugin(this) ) ); |
