summaryrefslogtreecommitdiffstats
path: root/modules/gltf/editor
diff options
context:
space:
mode:
authorLyuma <xn.lyuma@gmail.com>2024-05-21 03:19:35 -0700
committerLyuma <xn.lyuma@gmail.com>2024-05-21 03:19:35 -0700
commitef486db569c7489d09d1da587a363cbcd5bbc482 (patch)
tree2782cb56111a0214404faeea221e718cb7636536 /modules/gltf/editor
parentbd2300d77a6008167043f23fd91bcc562cde0a19 (diff)
downloadredot-engine-ef486db569c7489d09d1da587a363cbcd5bbc482.tar.gz
Support Import As Skeleton Bones on glTF and AnimationLibrary import
Diffstat (limited to 'modules/gltf/editor')
-rw-r--r--modules/gltf/editor/editor_scene_importer_gltf.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/gltf/editor/editor_scene_importer_gltf.cpp b/modules/gltf/editor/editor_scene_importer_gltf.cpp
index e4ed79d15e..af9b2f2363 100644
--- a/modules/gltf/editor/editor_scene_importer_gltf.cpp
+++ b/modules/gltf/editor/editor_scene_importer_gltf.cpp
@@ -59,6 +59,9 @@ Node *EditorSceneFormatImporterGLTF::import_scene(const String &p_path, uint32_t
int32_t enum_option = p_options["gltf/embedded_image_handling"];
state->set_handle_binary_image(enum_option);
}
+ if (p_options.has(SNAME("nodes/import_as_skeleton_bones")) ? (bool)p_options[SNAME("nodes/import_as_skeleton_bones")] : false) {
+ state->set_import_as_skeleton_bones(true);
+ }
Error err = gltf->append_from_file(p_path, state, p_flags);
if (err != OK) {
if (r_err) {