Difference between revisions of "R3d.Body:raycast"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.Body<br/> === Description === Performs a ray cast on the body. <source lang="lua"> r3d.Body:raycast(sx,sy,sz,...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
 
=== Description ===
 
=== Description ===
 
Performs a ray cast on the body.
 
Performs a ray cast on the body.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
r3d.Body:raycast(sx,sy,sz,ex,ey,ez)
 
r3d.Body:raycast(sx,sy,sz,ex,ey,ez)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===
Line 17: Line 17:
  
 
=== Example ===
 
=== Example ===
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
ship.body:raycast(0, 0, 0, 0, 0, 32)
 
ship.body:raycast(0, 0, 0, 0, 0, 32)
</source>
+
</syntaxhighlight>
  
 
{{R3d.Body}}
 
{{R3d.Body}}

Latest revision as of 15:31, 13 July 2023

Available since: Gideros 2019.10
Class: R3d.Body

Description

Performs a ray cast on the body.

r3d.Body:raycast(sx,sy,sz,ex,ey,ez)

Parameters

sx: (number) the starting position of the raycast on the X axis
sy: (number) the starting position of the raycast on the Y axis
sz: (number) the starting position of the raycast on the Z axis
ex: (number) the ending position of the raycast on the X axis
ey: (number) the ending position of the raycast on the Y axis
ez: (number) the ending position of the raycast on the Z axis

Example

ship.body:raycast(0, 0, 0, 0, 0, 32)