diff options
author | Răzvan Cosmin Rădulescu <razvancosmin.radulescu@gmail.com> | 2016-10-04 15:49:11 +0200 |
---|---|---|
committer | Răzvan Cosmin Rădulescu <razvancosmin.radulescu@gmail.com> | 2016-10-05 19:32:51 +0200 |
commit | ced8fb480600b9b64e0c82735e592c2103accb3f (patch) | |
tree | 45a56195226097d5a27dc1c910d3eb450b6f9d69 | |
parent | 1f9e16119f2b17fa507bdee8529459ed91f27b8c (diff) | |
download | redot-engine-ced8fb480600b9b64e0c82735e592c2103accb3f.tar.gz |
fixes #6695 - MultiNodeEdit edit path in exported NodePath
-rw-r--r-- | tools/editor/multi_node_edit.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/editor/multi_node_edit.cpp b/tools/editor/multi_node_edit.cpp index 4d27b8e349..e4ceaf4a8b 100644 --- a/tools/editor/multi_node_edit.cpp +++ b/tools/editor/multi_node_edit.cpp @@ -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)); |