Merge pull request #84085 from CardboardCarl/master

Clarified behavior of RayCast objects when `get_collision_point()` is used inside a collision shape
This commit is contained in:
Yuri Sizov 2024-01-22 20:38:33 +01:00
commit 52bac73a89
2 changed files with 2 additions and 2 deletions

View file

@ -74,7 +74,7 @@
<method name="get_collision_point" qualifiers="const">
<return type="Vector2" />
<description>
Returns the collision point at which the ray intersects the closest object.
Returns the collision point at which the ray intersects the closest object. If [member hit_from_inside] is [code]true[/code] and the ray starts inside of a collision shape, this function will return the origin point of the ray.
[b]Note:[/b] This point is in the [b]global[/b] coordinate system.
</description>
</method>

View file

@ -81,7 +81,7 @@
<method name="get_collision_point" qualifiers="const">
<return type="Vector3" />
<description>
Returns the collision point at which the ray intersects the closest object.
Returns the collision point at which the ray intersects the closest object. If [member hit_from_inside] is [code]true[/code] and the ray starts inside of a collision shape, this function will return the origin point of the ray.
[b]Note:[/b] This point is in the [b]global[/b] coordinate system.
</description>
</method>