diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 15:32:43 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-09-19 15:32:43 +0200 |
commit | 1445b052b44f291844613c8ec5c628e2225e7c2a (patch) | |
tree | 1623edb236b3c50d8f1ba4a0010dd8d5ecb42609 /doc/classes | |
parent | 166ab6e80ec26de3c1ac4e1f632f8e8f78a369cb (diff) | |
parent | c00c29a136675d9c4287d438eb37e6f665a40cb4 (diff) |
Merge pull request #66104 from Zylann/notification_local_transform_changed
Expose Node3D `NOTIFICATION_LOCAL_TRANSFORM_CHANGED`
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Node3D.xml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml index c8e2f1ac68..96ce10745d 100644 --- a/doc/classes/Node3D.xml +++ b/doc/classes/Node3D.xml @@ -331,6 +331,10 @@ <constant name="NOTIFICATION_VISIBILITY_CHANGED" value="43"> Node3D nodes receives this notification when their visibility changes. </constant> + <constant name="NOTIFICATION_LOCAL_TRANSFORM_CHANGED" value="44"> + Node3D nodes receives this notification when their local transform changes. This is not received when the transform of a parent node is changed. + In order for [constant NOTIFICATION_LOCAL_TRANSFORM_CHANGED] to work, users first need to ask for it, with [method set_notify_local_transform]. + </constant> <constant name="ROTATION_EDIT_MODE_EULER" value="0" enum="RotationEditMode"> </constant> <constant name="ROTATION_EDIT_MODE_QUATERNION" value="1" enum="RotationEditMode"> |