diff options
| author | Rémi Verschelde | 2016-01-15 13:54:04 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2016-01-15 13:54:04 +0100 |
| commit | 1fc96e2dca23a69defa4c1523245aa5c58f966c7 (patch) | |
| tree | c3b9e17b0f8af63a32487d197fd0cebcda53e994 /tools/editor/editor_node.cpp | |
| parent | d4a2409334764f2b29503a93c505603ec122c8db (diff) | |
| parent | 0b1f395e7d6938259308cf414be0f455c4693820 (diff) | |
| download | godot-1fc96e2dca23a69defa4c1523245aa5c58f966c7.tar.gz godot-1fc96e2dca23a69defa4c1523245aa5c58f966c7.tar.zst godot-1fc96e2dca23a69defa4c1523245aa5c58f966c7.zip | |
Merge pull request #3329 from SaracenOne/color_ramp_fix
Color Ramp Editor Plugin Fix
Diffstat (limited to 'tools/editor/editor_node.cpp')
| -rw-r--r-- | tools/editor/editor_node.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 6008021b1..dc6e83282 100644 --- a/tools/editor/editor_node.cpp +++ b/tools/editor/editor_node.cpp @@ -5975,7 +5975,8 @@ EditorNode::EditorNode() { add_editor_plugin( memnew( Polygon2DEditorPlugin(this) ) ); add_editor_plugin( memnew( LightOccluder2DEditorPlugin(this) ) ); add_editor_plugin( memnew( NavigationPolygonEditorPlugin(this) ) ); - add_editor_plugin( memnew( ColorRampEditorPlugin(this) ) ); + add_editor_plugin( memnew( ColorRampEditorPlugin(this,true) ) ); + add_editor_plugin( memnew( ColorRampEditorPlugin(this,false) ) ); add_editor_plugin( memnew( CollisionShape2DEditorPlugin(this) ) ); for(int i=0;i<EditorPlugins::get_plugin_count();i++) |
