summaryrefslogtreecommitdiffstats
path: root/scene/resources/packed_scene.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-05-07 16:49:20 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-05-07 16:49:20 +0200
commit29607924bd867511329eb030c58ef9a92f66766d (patch)
tree84964f6e3d114119eb8955d7a665fc2173d73b37 /scene/resources/packed_scene.cpp
parentedc61aa2f5f499a70502ac48afade23a3db5a16c (diff)
parentd53a1b0e84f7d764ccb4751ebaa733970ae27122 (diff)
downloadredot-engine-29607924bd867511329eb030c58ef9a92f66766d.tar.gz
Merge pull request #88741 from adamscott/fix-shared-variables-of-inherited-scenes-redux
Fix shared exported variables of inherited scenes
Diffstat (limited to 'scene/resources/packed_scene.cpp')
-rw-r--r--scene/resources/packed_scene.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/scene/resources/packed_scene.cpp b/scene/resources/packed_scene.cpp
index 94a031947a..407b12d72f 100644
--- a/scene/resources/packed_scene.cpp
+++ b/scene/resources/packed_scene.cpp
@@ -191,6 +191,7 @@ Node *SceneState::instantiate(GenEditState p_edit_state) const {
Node *node = nullptr;
MissingNode *missing_node = nullptr;
+ bool is_inherited_scene = false;
if (i == 0 && base_scene_idx >= 0) {
// Scene inheritance on root node.
@@ -201,7 +202,7 @@ Node *SceneState::instantiate(GenEditState p_edit_state) const {
if (p_edit_state != GEN_EDIT_STATE_DISABLED) {
node->set_scene_inherited_state(sdata->get_state());
}
-
+ is_inherited_scene = true;
} else if (n.instance >= 0) {
// Instance a scene into this node.
if (n.instance & FLAG_INSTANCE_IS_PLACEHOLDER) {
@@ -346,6 +347,12 @@ Node *SceneState::instantiate(GenEditState p_edit_state) const {
} else {
Variant value = props[nprops[j].value];
+ // Making sure that instances of inherited scenes don't share the same
+ // reference between them.
+ if (is_inherited_scene) {
+ value = value.duplicate(true);
+ }
+
if (value.get_type() == Variant::OBJECT) {
//handle resources that are local to scene by duplicating them if needed
Ref<Resource> res = value;