summaryrefslogtreecommitdiffstats
path: root/modules/gltf/editor
diff options
context:
space:
mode:
author398utubzyt <398utubzyt@gmail.com>2024-02-28 05:09:29 -0800
committer398utubzyt <398utubzyt@gmail.com>2024-02-28 05:09:29 -0800
commit4c69e8c026b9e2a1cc551e22554bb398ee201674 (patch)
treeeb7353bccff7a7773183a8c51a4a246d2f89ecbb /modules/gltf/editor
parentdf78c0636d79c9545a283e0e2a926d623998cc27 (diff)
downloadredot-engine-4c69e8c026b9e2a1cc551e22554bb398ee201674.tar.gz
Fix compilation errors when `DISABLE_DEPRECATED` is defined
Diffstat (limited to 'modules/gltf/editor')
-rw-r--r--modules/gltf/editor/editor_scene_importer_gltf.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gltf/editor/editor_scene_importer_gltf.cpp b/modules/gltf/editor/editor_scene_importer_gltf.cpp
index 38d7f5521b..78beaac3ed 100644
--- a/modules/gltf/editor/editor_scene_importer_gltf.cpp
+++ b/modules/gltf/editor/editor_scene_importer_gltf.cpp
@@ -75,7 +75,7 @@ Node *EditorSceneFormatImporterGLTF::import_scene(const String &p_path, uint32_t
bool remove_immutable = p_options.has("animation/remove_immutable_tracks") ? (bool)p_options["animation/remove_immutable_tracks"] : true;
return gltf->generate_scene(state, (float)p_options["animation/fps"], trimming, remove_immutable);
#else
- return gltf->create_scene(state, (float)p_options["animation/fps"], (bool)p_options["animation/trimming"], (bool)p_options["animation/remove_immutable_tracks"]);
+ return gltf->generate_scene(state, (float)p_options["animation/fps"], (bool)p_options["animation/trimming"], (bool)p_options["animation/remove_immutable_tracks"]);
#endif
}