fixes #6695 - MultiNodeEdit edit path in exported NodePath

This commit is contained in:
Răzvan Cosmin Rădulescu 2016-10-04 15:49:11 +02:00
parent 1f9e16119f
commit ced8fb4806

View file

@ -53,7 +53,14 @@ bool MultiNodeEdit::_set(const StringName& p_name, const Variant& p_value){
if (!n)
continue;
ur->add_do_property(n,name,p_value);
if (p_value.get_type() == Variant::NODE_PATH) {
Node *tonode = n->get_node(p_value);
NodePath p_path = n->get_path_to(tonode);
ur->add_do_property(n,name,p_path);
} else {
ur->add_do_property(n,name,p_value);
}
ur->add_undo_property(n,name,n->get(name));