diff options
| author | jussi | 2024-07-19 22:57:31 +0300 |
|---|---|---|
| committer | jussi | 2024-07-19 22:57:31 +0300 |
| commit | 03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f (patch) | |
| tree | 44c801b37e675aa63a0b13c7548be33e765e5842 /ReiLua_API.lua | |
| parent | c7b7975482bb33e7fb352c5759920748b6d3769b (diff) | |
| download | reilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.tar.gz reilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.tar.bz2 reilua-enhanced-03e9226b5f6c3fe4d113759b3a023ee92d7b2d4f.zip | |
GetRayBoxCells.
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 5a69d0e..2038d70 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -5137,6 +5137,14 @@ function RL.GetRayCollisionTriangle( ray, p1, p2, p3 ) end ---@return any rayCollision function RL.GetRayCollisionQuad( ray, p1, p2, p3, p4 ) end +---Get cell positions inside box that intersect with the ray. Returns empty table if ray misses the box +---- Success return Vector3{} +---@param ray any +---@param box any +---@param cellSize table +---@return any cells +function RL.GetRayBoxCells( ray, box, cellSize ) end + -- Audio - Audio device management functions ---Initialize audio device and context |
