classref: Sync with current master branch (1ce6df7)

This commit is contained in:
Godot Organization
2024-06-08 03:20:15 +00:00
parent 68327f0aa5
commit 149ac6df09
8 changed files with 32 additions and 16 deletions

View File

@@ -890,7 +890,7 @@ Returns a new vector moved toward ``to`` by the fixed ``delta`` amount. Will not
:ref:`Vector3<class_Vector3>` **normalized**\ (\ ) |const| :ref:`🔗<class_Vector3_method_normalized>`
Returns the result of scaling the vector to unit length. Equivalent to ``v / v.length()``. See also :ref:`is_normalized<class_Vector3_method_is_normalized>`.
Returns the result of scaling the vector to unit length. Equivalent to ``v / v.length()``. Returns ``(0, 0, 0)`` if ``v.length() == 0``. See also :ref:`is_normalized<class_Vector3_method_is_normalized>`.
\ **Note:** This function may return incorrect values if the input vector length is near zero.