summaryrefslogtreecommitdiffstats
path: root/modules/gltf
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-08-19 14:34:04 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-08-19 14:34:04 +0200
commit3e1b61d808b4a5f28b2e7b4fe2e7dacebd90a53d (patch)
tree911a962365049a7e856650a3d4b3e7cc98664124 /modules/gltf
parent3241b440efa6fddf92cf7c8a4abb159268d9f972 (diff)
parent246cc7e86de951c8eb8475397bb07dc6631142a3 (diff)
downloadredot-engine-3e1b61d808b4a5f28b2e7b4fe2e7dacebd90a53d.tar.gz
Merge pull request #95121 from aaronfranke/gltf-root-prop-owner
GLTF: Propagate owner for root node children
Diffstat (limited to 'modules/gltf')
-rw-r--r--modules/gltf/gltf_document.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/gltf/gltf_document.cpp b/modules/gltf/gltf_document.cpp
index d98b250538..cd25b93e6c 100644
--- a/modules/gltf/gltf_document.cpp
+++ b/modules/gltf/gltf_document.cpp
@@ -5658,6 +5658,15 @@ void GLTFDocument::_generate_scene_node(Ref<GLTFState> p_state, const GLTFNodeIn
if (p_scene_root == nullptr) {
// If the root node argument is null, this is the root node.
p_scene_root = current_node;
+ // If multiple nodes were generated under the root node, ensure they have the owner set.
+ if (unlikely(current_node->get_child_count() > 0)) {
+ Array args;
+ args.append(p_scene_root);
+ for (int i = 0; i < current_node->get_child_count(); i++) {
+ Node *child = current_node->get_child(i);
+ child->propagate_call(StringName("set_owner"), args);
+ }
+ }
} else {
// Add the node we generated and set the owner to the scene root.
p_scene_parent->add_child(current_node, true);