summaryrefslogtreecommitdiffstats
path: root/doc/classes/Node3D.xml
diff options
context:
space:
mode:
authorSilc Renew <tokage.it.lab@gmail.com>2023-02-08 02:48:33 +0900
committerSilc Lizard (Tokage) Renew <61938263+TokageItLab@users.noreply.github.com>2023-05-24 17:37:00 +0900
commit42aa5398d951dc709c892ef9f7afef6a0cf5d9ca (patch)
tree9dc0fa44cf373b3bc898ffa13241d8dd41f99ec8 /doc/classes/Node3D.xml
parentdc625bcbfc5b587ba8867481ee7a1f6a567c25d0 (diff)
downloadredot-engine-42aa5398d951dc709c892ef9f7afef6a0cf5d9ca.tar.gz
Fix Pathfollow direction
Co-authored-by: aaronfranke <arnfranke@yahoo.com>
Diffstat (limited to 'doc/classes/Node3D.xml')
-rw-r--r--doc/classes/Node3D.xml3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/classes/Node3D.xml b/doc/classes/Node3D.xml
index cad0e056e7..8247911a34 100644
--- a/doc/classes/Node3D.xml
+++ b/doc/classes/Node3D.xml
@@ -115,10 +115,11 @@
<param index="1" name="up" type="Vector3" default="Vector3(0, 1, 0)" />
<param index="2" name="use_model_front" type="bool" default="false" />
<description>
- Rotates the node so that the local forward axis (-Z, [constant Vector3.FORWARD]) points toward the [param target] position. If the [param use_model_front] options is specified, then the model is oriented in reverse, towards the model front axis (+Z, [constant Vector3.MODEL_FRONT]), which is more useful for orienting 3D models.
+ Rotates the node so that the local forward axis (-Z, [constant Vector3.FORWARD]) points toward the [param target] position.
The local up axis (+Y) points as close to the [param up] vector as possible while staying perpendicular to the local forward axis. The resulting transform is orthogonal, and the scale is preserved. Non-uniform scaling may not work correctly.
The [param target] position cannot be the same as the node's position, the [param up] vector cannot be zero, and the direction from the node's position to the [param target] vector cannot be parallel to the [param up] vector.
Operations take place in global space, which means that the node must be in the scene tree.
+ If [param use_model_front] is [code]true[/code], the +Z axis (asset front) is treated as forward (implies +X is left) and points toward the [param target] position. By default, the -Z axis (camera forward) is treated as forward (implies +X is right).
</description>
</method>
<method name="look_at_from_position">