Difference between revisions of "R3d.Fixture:raycast"
From GiderosMobile
(Created page with "'''Available since:''' Gideros 2019.10<br/> '''Class:''' R3d.Fixture<br/> === Description === Performs a ray cast on the fixture. <source lang="lua"> r3d.Fixture:raycast(...") |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Performs a ray cast on the fixture. | Performs a ray cast on the fixture. | ||
− | < | + | <syntaxhighlight lang="lua"> |
r3d.Fixture:raycast(sx,sy,sz,ex,ey,ez) | r3d.Fixture:raycast(sx,sy,sz,ex,ey,ez) | ||
</source> | </source> | ||
Line 17: | Line 17: | ||
=== Example === | === Example === | ||
− | < | + | <syntaxhighlight lang="lua"> |
</source> | </source> | ||
{{R3d.Fixture}} | {{R3d.Fixture}} |
Revision as of 14:30, 13 July 2023
Available since: Gideros 2019.10
Class: R3d.Fixture
Description
Performs a ray cast on the fixture. <syntaxhighlight lang="lua"> r3d.Fixture:raycast(sx,sy,sz,ex,ey,ez) </source>
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
<syntaxhighlight lang="lua"> </source>