diff options
Diffstat (limited to 'doc/classes/Node.xml')
-rw-r--r-- | doc/classes/Node.xml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index d0c948e599..51d11104b6 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8" ?> -<class name="Node" inherits="Object" category="Core" version="3.0-beta"> +<class name="Node" inherits="Object" category="Core" version="3.0-rc1"> <brief_description> Base class for all [i]scene[/i] objects. </brief_description> @@ -744,14 +744,14 @@ Emitted when the node enters the tree. </description> </signal> - <signal name="tree_exiting"> + <signal name="tree_exited"> <description> - Emitted when the node is still active but about to exit the tree. This is the right place for de-initialization. + Emitted after the node exits the tree and is no longer active. </description> </signal> - <signal name="tree_exited"> + <signal name="tree_exiting"> <description> - Emitted after the node exits the tree and is no longer active. + Emitted when the node is still active but about to exit the tree. This is the right place for de-initialization. </description> </signal> </signals> |