1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-01 16:38:31 +00:00

Merge pull request #3390 from Hinsbart/duplicate_fix

duplicate groups and signals
This commit is contained in:
Rémi Verschelde
2016-01-20 07:25:34 +01:00

View File

@@ -1510,6 +1510,15 @@ Node *Node::duplicate(bool p_use_instancing) const {
node->set_name(get_name()); node->set_name(get_name());
List<GroupInfo> gi;
get_groups(&gi);
for (List<GroupInfo>::Element *E=gi.front();E;E=E->next()) {
node->add_to_group(E->get().name, E->get().persistent);
}
_duplicate_signals(this, node);
for(int i=0;i<get_child_count();i++) { for(int i=0;i<get_child_count();i++) {
if (get_child(i)->data.parent_owned) if (get_child(i)->data.parent_owned)