diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-03-01 09:37:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-01 09:37:16 +0100 |
commit | 5b58482b411c75af081fed0bc9a58446a64c84de (patch) | |
tree | a50aa3a77459591ba7701667553a1bf212f9530d | |
parent | e9cb64a8b50c7e252f3927bfd7307b47c6a33d06 (diff) | |
parent | ef5042a70f9d9ef1ac8292fc2a00a1560eecd182 (diff) |
Merge pull request #46508 from rcorre/pathbake
Clarify Curve.get_closest_point uses baked points.
-rw-r--r-- | doc/classes/Curve2D.xml | 2 | ||||
-rw-r--r-- | doc/classes/Curve3D.xml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Curve2D.xml b/doc/classes/Curve2D.xml index 2d50d98a74..b33f3b4ffc 100644 --- a/doc/classes/Curve2D.xml +++ b/doc/classes/Curve2D.xml @@ -63,7 +63,7 @@ <argument index="0" name="to_point" type="Vector2"> </argument> <description> - Returns the closest point (in curve's local space) to [code]to_point[/code]. + Returns the closest baked point (in curve's local space) to [code]to_point[/code]. [code]to_point[/code] must be in this curve's local space. </description> </method> diff --git a/doc/classes/Curve3D.xml b/doc/classes/Curve3D.xml index bda04f010b..fcd150ad57 100644 --- a/doc/classes/Curve3D.xml +++ b/doc/classes/Curve3D.xml @@ -78,7 +78,7 @@ <argument index="0" name="to_point" type="Vector3"> </argument> <description> - Returns the closest point (in curve's local space) to [code]to_point[/code]. + Returns the closest baked point (in curve's local space) to [code]to_point[/code]. [code]to_point[/code] must be in this curve's local space. </description> </method> |