summaryrefslogtreecommitdiff
path: root/core/string/node_path.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-02 00:17:21 +0200
committerGitHub <noreply@github.com>2022-07-02 00:17:21 +0200
commita2459c7d35eeaeea8b1d4fa9ce6c9cbe74f11643 (patch)
treec52f05eddaf57d2b54e4df061ecf354a8b3ea133 /core/string/node_path.h
parentd67691fbd6c1335caf523a2601450733bb4f101f (diff)
parentdc43cfc830e7e602ad5aa1f59ceaa82e344dd378 (diff)
Merge pull request #61610 from TokageItLab/importer-retarget-registered-gdhumanoid
Diffstat (limited to 'core/string/node_path.h')
-rw-r--r--core/string/node_path.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/string/node_path.h b/core/string/node_path.h
index 53976bd524..2bce33e21e 100644
--- a/core/string/node_path.h
+++ b/core/string/node_path.h
@@ -39,6 +39,7 @@ class NodePath {
SafeRefCount refcount;
Vector<StringName> path;
Vector<StringName> subpath;
+ StringName concatenated_path;
StringName concatenated_subpath;
bool absolute;
bool has_slashes;
@@ -59,6 +60,7 @@ public:
StringName get_subname(int p_idx) const;
Vector<StringName> get_names() const;
Vector<StringName> get_subnames() const;
+ StringName get_concatenated_names() const;
StringName get_concatenated_subnames() const;
NodePath rel_path_to(const NodePath &p_np) const;