aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorRémi Verschelde2016-01-15 13:54:04 +0100
committerRémi Verschelde2016-01-15 13:54:04 +0100
commit1fc96e2dca23a69defa4c1523245aa5c58f966c7 (patch)
treec3b9e17b0f8af63a32487d197fd0cebcda53e994 /tools/editor/editor_node.cpp
parentd4a2409334764f2b29503a93c505603ec122c8db (diff)
parent0b1f395e7d6938259308cf414be0f455c4693820 (diff)
downloadgodot-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.cpp3
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++)