1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

Replicate load-as-placeholder state on node duplication

(cherry picked from commit 6aecf91e4f)
This commit is contained in:
Haoyu Qiu
2022-01-16 15:08:03 +08:00
committed by Rémi Verschelde
parent 986b99ed5c
commit 08af6e0407

View File

@@ -1963,6 +1963,7 @@ Node *Node::_duplicate(int p_flags, Map<const Node *, Node *> *r_duplimap) const
#endif
node = res->instance(ges);
ERR_FAIL_COND_V(!node, nullptr);
node->set_scene_instance_load_placeholder(get_scene_instance_load_placeholder());
instanced = true;