diff options
author | VolTer <mew.pur.pur@abv.bg> | 2022-08-15 00:50:31 +0200 |
---|---|---|
committer | VolTer <mew.pur.pur@abv.bg> | 2022-08-16 12:41:10 +0200 |
commit | 2599710793cebac9575420aafcfa80020e1565c1 (patch) | |
tree | a3382ec8f23070cf588433cb7365be2830497ebd /doc/classes | |
parent | f04004b24c5844d4974db1ce55e7059fc007d4f9 (diff) |
Rename NOTIFICATION_INSTANCED to NOTIFICATION_SCENE_INSTANTIATED
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Node.xml | 4 | ||||
-rw-r--r-- | doc/classes/PackedScene.xml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Node.xml b/doc/classes/Node.xml index 8cc8498609..38a497b562 100644 --- a/doc/classes/Node.xml +++ b/doc/classes/Node.xml @@ -856,8 +856,8 @@ <constant name="NOTIFICATION_UNPARENTED" value="19"> Notification received when a node is unparented (parent removed it from the list of children). </constant> - <constant name="NOTIFICATION_INSTANCED" value="20"> - Notification received when the node is instantiated. + <constant name="NOTIFICATION_SCENE_INSTANTIATED" value="20"> + Notification received by scene owner when its scene is instantiated. </constant> <constant name="NOTIFICATION_DRAG_BEGIN" value="21"> Notification received when a drag operation begins. All nodes receive this notification, not only the dragged one. diff --git a/doc/classes/PackedScene.xml b/doc/classes/PackedScene.xml index 821fc1ae95..038b774b97 100644 --- a/doc/classes/PackedScene.xml +++ b/doc/classes/PackedScene.xml @@ -92,7 +92,7 @@ <return type="Node" /> <argument index="0" name="edit_state" type="int" enum="PackedScene.GenEditState" default="0" /> <description> - Instantiates the scene's node hierarchy. Triggers child scene instantiation(s). Triggers a [constant Node.NOTIFICATION_INSTANCED] notification on the root node. + Instantiates the scene's node hierarchy. Triggers child scene instantiation(s). Triggers a [constant Node.NOTIFICATION_SCENE_INSTANTIATED] notification on the root node. </description> </method> <method name="pack"> |