Merge pull request #3390 from Hinsbart/duplicate_fix
duplicate groups and signals
This commit is contained in:
commit
a6b7e8c24e
1 changed files with 9 additions and 0 deletions
|
@ -1510,6 +1510,15 @@ Node *Node::duplicate(bool p_use_instancing) const {
|
|||
|
||||
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++) {
|
||||
|
||||
if (get_child(i)->data.parent_owned)
|
||||
|
|
Loading…
Reference in a new issue