diff options
| author | Marc Gilleron | 2017-04-30 16:27:10 +0200 |
|---|---|---|
| committer | Marc Gilleron | 2017-06-24 01:01:36 +0200 |
| commit | 659897cfb8bda0377d798a6f73505d537e521cf9 (patch) | |
| tree | db94c76d34d51e9ec97213a08c9654825707fad4 /editor/editor_node.cpp | |
| parent | 00e5ba314393ce2cc4df883bc1742306007ed117 (diff) | |
| download | godot-659897cfb8bda0377d798a6f73505d537e521cf9.tar.gz godot-659897cfb8bda0377d798a6f73505d537e521cf9.tar.zst godot-659897cfb8bda0377d798a6f73505d537e521cf9.zip | |
Added Curve resource
- New resource for curves in y(x) form
- CurveTexture now has a Curve
- Curve and CurveTexture share the same editor
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 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) ) ); |
