Browse Source

Merge pull request #78661 from AThousandShips/doc_node_path_3_x

[3.x] Add example for `NodePath` to grandparent
Rémi Verschelde 2 years ago
parent
commit
fea94b5a0d
1 changed files with 1 additions and 0 deletions
  1. 1 0
      doc/classes/NodePath.xml

+ 1 - 0
doc/classes/NodePath.xml

@@ -15,6 +15,7 @@
 		@"." # The current node.
 		@".." # The parent node.
 		@"../C" # A sibling node C.
+		@"../.." # The grandparent node.
 		# A leading slash means it is absolute from the SceneTree.
 		@"/root" # Equivalent to get_tree().get_root().
 		@"/root/Main" # If your main scene's root node were named "Main".