summaryrefslogtreecommitdiff
path: root/scene/main
diff options
context:
space:
mode:
authorSekoiaTree <sequoia.1009@gmail.com>2020-08-25 14:46:33 +0200
committerSekoiaTree <sequoia.1009@gmail.com>2020-09-01 11:34:36 +0200
commitbdf614d3d75551164fdd1eed7fb5539cafa30330 (patch)
tree7b929a776ad4cd56629c73d137c96119730f3cd2 /scene/main
parent603febdbfef2d4553eb22e545d3094142b5eaab3 (diff)
Made get_child support negative indexes, with documentation
Diffstat (limited to 'scene/main')
-rw-r--r--scene/main/node.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/scene/main/node.cpp b/scene/main/node.cpp
index 653eb698d4..6b304c03d2 100644
--- a/scene/main/node.cpp
+++ b/scene/main/node.cpp
@@ -1327,6 +1327,9 @@ int Node::get_child_count() const {
}
Node *Node::get_child(int p_index) const {
+ if (p_index < 0) {
+ p_index += data.children.size();
+ }
ERR_FAIL_INDEX_V(p_index, data.children.size(), nullptr);
return data.children[p_index];