Merge pull request #69658 from KoBeWi/🛠_ENABLED
Fix unexpected editor dependency
This commit is contained in:
commit
450e8e3c2f
1 changed files with 4 additions and 0 deletions
|
@ -220,8 +220,12 @@ void SceneDebugger::_save_node(ObjectID id, const String &p_path) {
|
|||
Node *node = Object::cast_to<Node>(ObjectDB::get_instance(id));
|
||||
ERR_FAIL_COND(!node);
|
||||
|
||||
#ifdef TOOLS_ENABLED
|
||||
HashMap<const Node *, Node *> duplimap;
|
||||
Node *copy = node->duplicate_from_editor(duplimap);
|
||||
#else
|
||||
Node *copy = node->duplicate();
|
||||
#endif
|
||||
|
||||
// Handle Unique Nodes.
|
||||
for (int i = 0; i < copy->get_child_count(false); i++) {
|
||||
|
|
Loading…
Reference in a new issue