diff options
| author | Juan Linietsky | 2017-06-24 18:13:56 -0300 |
|---|---|---|
| committer | GitHub | 2017-06-24 18:13:56 -0300 |
| commit | 898d8fd55735354783d131bc55c5f822ddabf60c (patch) | |
| tree | dc9065dc1d9c251ae64d63b0a237d949e79b5393 /editor/editor_node.cpp | |
| parent | 68891baa1b091ed0e7a40df2f097e757dc4884a8 (diff) | |
| parent | 2bb1638b0a34f4f298e2db18354ea3aec3d63f61 (diff) | |
| download | godot-898d8fd55735354783d131bc55c5f822ddabf60c.tar.gz godot-898d8fd55735354783d131bc55c5f822ddabf60c.tar.zst godot-898d8fd55735354783d131bc55c5f822ddabf60c.zip | |
Merge pull request #9353 from Zylann/gradient_refactor
GradientTexture now uses a Gradient
Diffstat (limited to '')
| -rw-r--r-- | editor/editor_node.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp index 2b29e4b08..04257b8cd 100644 --- a/editor/editor_node.cpp +++ b/editor/editor_node.cpp @@ -77,7 +77,6 @@ #include "plugins/curve_editor_plugin.h" #include "plugins/gi_probe_editor_plugin.h" #include "plugins/gradient_editor_plugin.h" -#include "plugins/gradient_texture_editor_plugin.h" #include "plugins/item_list_editor_plugin.h" #include "plugins/light_occluder_2d_editor_plugin.h" #include "plugins/line_2d_editor_plugin.h" @@ -6112,7 +6111,6 @@ EditorNode::EditorNode() { add_editor_plugin(memnew(LightOccluder2DEditorPlugin(this))); add_editor_plugin(memnew(NavigationPolygonEditorPlugin(this))); add_editor_plugin(memnew(GradientEditorPlugin(this))); - add_editor_plugin(memnew(GradientTextureEditorPlugin(this))); add_editor_plugin(memnew(CollisionShape2DEditorPlugin(this))); add_editor_plugin(memnew(CurveEditorPlugin(this))); add_editor_plugin(memnew(TextureEditorPlugin(this))); |
