diff options
author | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-10-16 10:42:09 +0800 |
---|---|---|
committer | Haoyu Qiu <timothyqiu32@gmail.com> | 2022-10-16 10:48:59 +0800 |
commit | 64c20a51c12ee69c266eaae0fee5d47cc2490971 (patch) | |
tree | f1fdd02a260d3cd734d1332349aedfec9e67365f /scene/main/node.cpp | |
parent | dc4b6165962536b53c4c1471fcf0be43c70e2335 (diff) |
Fix get_path() error when calling get_node()
Diffstat (limited to 'scene/main/node.cpp')
-rw-r--r-- | scene/main/node.cpp | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp index 2ea45df309..25b38eb15b 100644 --- a/scene/main/node.cpp +++ b/scene/main/node.cpp @@ -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)); } } |