summaryrefslogtreecommitdiff
path: root/doc/classes/Vector3.xml
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-12-12 12:19:47 -0800
committerAaron Franke <arnfranke@yahoo.com>2022-01-06 11:12:59 -0800
commit064036d7867a5ac180851aa60707478493182c5c (patch)
treec8e1f59b3c98703db707696040f978ecaf91ccda /doc/classes/Vector3.xml
parentf5d281d55f1865945f573e9c11500ff1d73a0e27 (diff)
Allow Vector2/3 slerp values to have any length
Diffstat (limited to 'doc/classes/Vector3.xml')
-rw-r--r--doc/classes/Vector3.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml
index 8d2ef0ecd9..ead08d86df 100644
--- a/doc/classes/Vector3.xml
+++ b/doc/classes/Vector3.xml
@@ -290,7 +290,7 @@
<argument index="1" name="weight" type="float" />
<description>
Returns the result of spherical linear interpolation between this vector and [code]to[/code], by amount [code]weight[/code]. [code]weight[/code] is on the range of 0.0 to 1.0, representing the amount of interpolation.
- [b]Note:[/b] Both vectors must be normalized.
+ This method also handles interpolating the lengths if the input vectors have different lengths. For the special case of one or both input vectors having zero length, this method behaves like [method lerp].
</description>
</method>
<method name="slide" qualifiers="const">