summaryrefslogtreecommitdiffstats
path: root/doc/classes/PhysicsDirectSpaceState3D.xml
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2021-11-10 15:57:11 -0700
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2021-11-10 17:43:35 -0700
commitc3ae7ddedd8526fff273237cb61ebb866a723af5 (patch)
tree9260e8a42f83ed33921f5de3f8be6bd5c9ccfa68 /doc/classes/PhysicsDirectSpaceState3D.xml
parent3668312e786d0e06fee627e5255edef88710cc9b (diff)
downloadredot-engine-c3ae7ddedd8526fff273237cb61ebb866a723af5.tar.gz
Add raycast options to hit when starting inside / hit back faces
Makes the results consistent for all shape types with options to set the desired behavior.
Diffstat (limited to 'doc/classes/PhysicsDirectSpaceState3D.xml')
-rw-r--r--doc/classes/PhysicsDirectSpaceState3D.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/PhysicsDirectSpaceState3D.xml b/doc/classes/PhysicsDirectSpaceState3D.xml
index 6a7fe46518..349ce31ab4 100644
--- a/doc/classes/PhysicsDirectSpaceState3D.xml
+++ b/doc/classes/PhysicsDirectSpaceState3D.xml
@@ -65,7 +65,7 @@
Intersects a ray in a given space. Ray position and other parameters are defined through [PhysicsRayQueryParameters3D]. The returned object is a dictionary with the following fields:
[code]collider[/code]: The colliding object.
[code]collider_id[/code]: The colliding object's ID.
- [code]normal[/code]: The object's surface normal at the intersection point.
+ [code]normal[/code]: The object's surface normal at the intersection point, or [code]Vector3(0, 0, 0)[/code] if the ray starts inside the shape and [member PhysicsRayQueryParameters3D.hit_from_inside] is [code]true[/code].
[code]position[/code]: The intersection point.
[code]rid[/code]: The intersecting object's [RID].
[code]shape[/code]: The shape index of the colliding shape.