Merge pull request #67467 from timothyqiu/who-ami-i

Fix get_path() error when calling get_node()
This commit is contained in:
Rémi Verschelde 2022-10-31 10:33:51 +01:00
commit 32548f9608
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -1341,12 +1341,23 @@ Node *Node::get_node(const NodePath &p_path) const {
Node *node = get_node_or_null(p_path);
if (unlikely(!node)) {
// Try to get a clear description of this node in the error message.
String desc;
if (is_inside_tree()) {
desc = get_path();
} else {
desc = get_name();
if (desc.is_empty()) {
desc = get_class();
}
}
if (p_path.is_absolute()) {
ERR_FAIL_V_MSG(nullptr,
vformat(R"(Node not found: "%s" (absolute path attempted from "%s").)", p_path, get_path()));
vformat(R"(Node not found: "%s" (absolute path attempted from "%s").)", p_path, desc));
} else {
ERR_FAIL_V_MSG(nullptr,
vformat(R"(Node not found: "%s" (relative to "%s").)", p_path, get_path()));
vformat(R"(Node not found: "%s" (relative to "%s").)", p_path, desc));
}
}