diff options
author | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2022-04-09 02:35:50 -0700 |
---|---|---|
committer | K. S. Ernest (iFire) Lee <ernest.lee@chibifire.com> | 2022-05-20 06:58:48 -0700 |
commit | d600e0bc00244c46ff385ec4f52995faa4825ef3 (patch) | |
tree | bf61a1352185b244776910be628d506a7cf2f779 /modules/gltf/editor | |
parent | 920ca6252888489ca72647ad8d5ef721d5e5e686 (diff) |
Improve gltf extension GLTFDocument api.
Diffstat (limited to 'modules/gltf/editor')
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_gltf.cpp | 1 | ||||
-rw-r--r-- | modules/gltf/editor/editor_scene_importer_gltf.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/modules/gltf/editor/editor_scene_importer_gltf.cpp b/modules/gltf/editor/editor_scene_importer_gltf.cpp index d5b247fc6e..3fadec5167 100644 --- a/modules/gltf/editor/editor_scene_importer_gltf.cpp +++ b/modules/gltf/editor/editor_scene_importer_gltf.cpp @@ -35,7 +35,6 @@ #include "../gltf_document.h" #include "../gltf_state.h" -#include "scene/main/node.h" #include "scene/resources/animation.h" uint32_t EditorSceneFormatImporterGLTF::get_import_flags() const { diff --git a/modules/gltf/editor/editor_scene_importer_gltf.h b/modules/gltf/editor/editor_scene_importer_gltf.h index edca038532..b17a1e4eaa 100644 --- a/modules/gltf/editor/editor_scene_importer_gltf.h +++ b/modules/gltf/editor/editor_scene_importer_gltf.h @@ -33,6 +33,9 @@ #ifdef TOOLS_ENABLED +#include "../gltf_document_extension.h" +#include "../gltf_state.h" + #include "editor/import/resource_importer_scene.h" class Animation; |