Moved the PaintEditorPlugin under the editor folder in the paint module.

This commit is contained in:
Relintai 2022-11-20 23:18:31 +01:00
parent 6c0008a912
commit 9dda076070
4 changed files with 4 additions and 4 deletions

View File

@ -38,5 +38,5 @@ module_env.add_source_files(env.modules_sources,"nodes/paint_canvas.cpp")
module_env.add_source_files(env.modules_sources,"nodes/paint_project.cpp") module_env.add_source_files(env.modules_sources,"nodes/paint_project.cpp")
if 'TOOLS_ENABLED' in env["CPPDEFINES"]: if 'TOOLS_ENABLED' in env["CPPDEFINES"]:
module_env.add_source_files(env.modules_sources,"paint_editor_plugin.cpp") module_env.add_source_files(env.modules_sources,"editor/paint_editor_plugin.cpp")
module_env.add_source_files(env.modules_sources,"editor/paint_inspector_plugin.cpp") module_env.add_source_files(env.modules_sources,"editor/paint_inspector_plugin.cpp")

View File

@ -27,9 +27,9 @@ SOFTWARE.
#include "editor/editor_settings.h" #include "editor/editor_settings.h"
#include "editor/plugins/canvas_item_editor_plugin.h" #include "editor/plugins/canvas_item_editor_plugin.h"
#include "./editor/paint_inspector_plugin.h" #include "paint_inspector_plugin.h"
#include "nodes/paint_node.h" #include "../nodes/paint_node.h"
void PaintEditorPlugin::make_visible(const bool visible) { void PaintEditorPlugin::make_visible(const bool visible) {
} }

View File

@ -49,7 +49,7 @@ SOFTWARE.
#include "nodes/paint_project.h" #include "nodes/paint_project.h"
#ifdef TOOLS_ENABLED #ifdef TOOLS_ENABLED
#include "paint_editor_plugin.h" #include "editor/paint_editor_plugin.h"
#endif #endif
void register_paint_types() { void register_paint_types() {