diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-16 23:10:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-16 23:10:12 +0200 |
commit | 9dfd120a7e7c6e9b8af581ceac75847f2696e855 (patch) | |
tree | 65416c69df1cd21fa227423f7bb7a279ab5fc12b /doc | |
parent | 1137948015e28049699a4a040ceb78d01593372b (diff) | |
parent | 45e329c1d2ccc0afd76777fb98a1e908bc9b7877 (diff) |
Merge pull request #63077 from Zylann/doc_plane_distance_to
Indicate Plane.distance_to returns a signed distance
Diffstat (limited to 'doc')
-rw-r--r-- | doc/classes/Plane.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/Plane.xml b/doc/classes/Plane.xml index a42ceba777..6fefcef0a1 100644 --- a/doc/classes/Plane.xml +++ b/doc/classes/Plane.xml @@ -77,7 +77,7 @@ <return type="float" /> <argument index="0" name="point" type="Vector3" /> <description> - Returns the shortest distance from the plane to the position [code]point[/code]. + Returns the shortest distance from the plane to the position [code]point[/code]. If the point is above the plane, the distance will be positive. If below, the distance will be negative. </description> </method> <method name="has_point" qualifiers="const"> |