Fix duplicating nodes with Array properties
This commit is contained in:
parent
cae2f853dc
commit
bef2e62c88
1 changed files with 1 additions and 2 deletions
|
@ -2907,9 +2907,8 @@ void Node::_duplicate_properties(const Node *p_root, const Node *p_original, Nod
|
|||
arr[i] = p_copy->get_node_or_null(p_original->get_path_to(property_node));
|
||||
}
|
||||
}
|
||||
value = arr;
|
||||
p_copy->set(name, value);
|
||||
}
|
||||
p_copy->set(name, arr);
|
||||
} else {
|
||||
p_copy->set(name, value);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue