diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-10-09 01:12:51 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2024-01-04 11:02:49 -0600 |
commit | 9753a35c76735db3146e9f16df70f5579481cba2 (patch) | |
tree | cf0b83f2c8945ffe9ca907214a60068e7cb6203b /modules/gltf/editor | |
parent | f4059d0e3c0a2397d779257a441994e2bed71b52 (diff) | |
download | redot-engine-9753a35c76735db3146e9f16df70f5579481cba2.tar.gz |
Move 3D scene import classes to their own folder
Diffstat (limited to 'modules/gltf/editor')
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/gltf/editor/editor_scene_exporter_gltf_plugin.cpp b/modules/gltf/editor/editor_scene_exporter_gltf_plugin.cpp index 6975bc1228..56e4bfbb32 100644 --- a/modules/gltf/editor/editor_scene_exporter_gltf_plugin.cpp +++ b/modules/gltf/editor/editor_scene_exporter_gltf_plugin.cpp @@ -39,7 +39,7 @@ #include "editor/editor_node.h" #include "editor/editor_scale.h" #include "editor/gui/editor_file_dialog.h" -#include "editor/import/scene_import_settings.h" +#include "editor/import/3d/scene_import_settings.h" String SceneExporterGLTFPlugin::get_name() const { return "ConvertGLTF2"; diff --git a/modules/gltf/editor/editor_scene_importer_blend.h b/modules/gltf/editor/editor_scene_importer_blend.h index ec467db457..c1f4280170 100644 --- a/modules/gltf/editor/editor_scene_importer_blend.h +++ b/modules/gltf/editor/editor_scene_importer_blend.h @@ -34,7 +34,7 @@ #ifdef TOOLS_ENABLED #include "editor/editor_file_system.h" -#include "editor/import/resource_importer_scene.h" +#include "editor/import/3d/resource_importer_scene.h" class Animation; class Node; diff --git a/modules/gltf/editor/editor_scene_importer_fbx.h b/modules/gltf/editor/editor_scene_importer_fbx.h index cc60830eac..86ee6568c9 100644 --- a/modules/gltf/editor/editor_scene_importer_fbx.h +++ b/modules/gltf/editor/editor_scene_importer_fbx.h @@ -35,7 +35,7 @@ #include "editor/editor_file_system.h" #include "editor/fbx_importer_manager.h" -#include "editor/import/resource_importer_scene.h" +#include "editor/import/3d/resource_importer_scene.h" class Animation; class Node; diff --git a/modules/gltf/editor/editor_scene_importer_gltf.h b/modules/gltf/editor/editor_scene_importer_gltf.h index 7726c845bf..ec563bf525 100644 --- a/modules/gltf/editor/editor_scene_importer_gltf.h +++ b/modules/gltf/editor/editor_scene_importer_gltf.h @@ -33,7 +33,7 @@ #ifdef TOOLS_ENABLED -#include "editor/import/resource_importer_scene.h" +#include "editor/import/3d/resource_importer_scene.h" class Animation; class Node; |