diff options
author | Phischermen <kevfischermen@gmail.com> | 2020-05-08 12:59:25 -0700 |
---|---|---|
committer | Phischermen <kevfischermen@gmail.com> | 2020-05-08 13:34:57 -0700 |
commit | 72d1d7e948fd6da51d15f0d92c5bc8cbb3638294 (patch) | |
tree | 0c9513559b15022e4f3f72d268f69d7972115830 | |
parent | b9f2e57d6240346f1833fd0390de195c956299e7 (diff) |
Add info about how gizmos affect transform notifications
-rw-r--r-- | doc/classes/Node3D.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml index 05d00b9f31..024d92b36c 100644 --- a/doc/classes/Node3D.xml +++ b/doc/classes/Node3D.xml @@ -244,7 +244,7 @@ <argument index="0" name="enable" type="bool"> </argument> <description> - Sets whether the node notifies about its global and local transformation changes. [Node3D] will not propagate this by default. + Sets whether the node notifies about its global and local transformation changes. [Node3D] will not propagate this by default, unless it is in the editor context and it has a valid gizmo. </description> </method> <method name="show"> @@ -336,7 +336,7 @@ <constants> <constant name="NOTIFICATION_TRANSFORM_CHANGED" value="2000"> Node3D nodes receives this notification when their global transform changes. This means that either the current or a parent node changed its transform. - In order for [constant NOTIFICATION_TRANSFORM_CHANGED] to work, users first need to ask for it, with [method set_notify_transform]. + In order for [constant NOTIFICATION_TRANSFORM_CHANGED] to work, users first need to ask for it, with [method set_notify_transform]. The notification is also sent if the node is in the editor context and it has a valid gizmo. </constant> <constant name="NOTIFICATION_ENTER_WORLD" value="41"> Node3D nodes receives this notification when they are registered to new [World3D] resource. |