From d2241a2b5fbf2bcac71c249420c88d33f12dfffc Mon Sep 17 00:00:00 2001 From: Maganty Rushyendra Date: Tue, 5 Jan 2021 15:02:43 +0800 Subject: [PATCH] Specify order of drawing of Nodes in raise() description (cherry picked from commit a67ef5999d940bc532f07663f5b3f72ff864b820) --- doc/classes/Node.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index ca6a528c658..036f2eb2bd2 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -570,7 +570,7 @@ - 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. + 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. The top Node is drawn first, then any siblings below the top Node in the hierarchy are successively drawn on top of it. After using [code]raise[/code], a Control will be drawn on top of its siblings.