Merge pull request #47170 from hilfazer/print_stray_nodes
This commit is contained in:
commit
097556d11a
@ -2837,7 +2837,16 @@ static void _Node_debug_sn(Object *p_obj) {
|
|||||||
} else {
|
} else {
|
||||||
path = String(p->get_name()) + "/" + p->get_path_to(n);
|
path = String(p->get_name()) + "/" + p->get_path_to(n);
|
||||||
}
|
}
|
||||||
print_line(itos(p_obj->get_instance_id()) + " - Stray Node: " + path + " (Type: " + n->get_class() + ")");
|
|
||||||
|
String script_file_string;
|
||||||
|
if (!n->get_script().is_null()) {
|
||||||
|
Ref<Script> script = n->get_script();
|
||||||
|
if (script.is_valid()) {
|
||||||
|
script_file_string = ", Script: " + script->get_path();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
print_line(itos(p_obj->get_instance_id()) + " - Stray Node: " + path + " (Type: " + n->get_class() + script_file_string + ")");
|
||||||
}
|
}
|
||||||
#endif // DEBUG_ENABLED
|
#endif // DEBUG_ENABLED
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user