Browse Source

Merge pull request #30380 from KoBeWi/controlraiser

Clarify better what Node.raise does
Rémi Verschelde 6 years ago
parent
commit
1d5c067215
1 changed files with 1 additions and 1 deletions
  1. 1 1
      doc/classes/Node.xml

+ 1 - 1
doc/classes/Node.xml

@@ -553,7 +553,7 @@
 			<return type="void">
 			<return type="void">
 			</return>
 			</return>
 			<description>
 			<description>
-				Moves this node to the top of the array of nodes of the parent node. This is often useful in GUIs ([Control] nodes), because their order of drawing depends on their order in the tree.
+				Moves this node to the bottom of parent node's children hierarchy. This is often useful in GUIs ([Control] nodes), because their order of drawing depends on their order in the tree, i.e. the further they are on the node list, the higher they are drawn. After using [code]raise[/code], a Control will be drawn on top of their siblings.
 			</description>
 			</description>
 		</method>
 		</method>
 		<method name="remove_and_skip">
 		<method name="remove_and_skip">