diff options
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 76513a9..f2c4289 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -3129,6 +3129,30 @@ function RL.DrawCylinderWires( position, radiusTop, radiusBottom, height, slices ---@return any success function RL.DrawCylinderWiresEx( startPos, endPos, startRadius, endRadius, sides, color ) end +---Draw a capsule with the center of its sphere caps at startPos and endPos +---- Failure return false +---- Success return true +---@param startPos table +---@param endPos table +---@param radius number +---@param slices integer +---@param rings integer +---@param color table +---@return any success +function RL.DrawCapsule( startPos, endPos, radius, slices, rings, color ) end + +---Draw capsule wireframe with the center of its sphere caps at startPos and endPos +---- Failure return false +---- Success return true +---@param startPos table +---@param endPos table +---@param radius number +---@param slices integer +---@param rings integer +---@param color table +---@return any success +function RL.DrawCapsuleWires( startPos, endPos, radius, slices, rings, color ) end + ---Draw a plane XZ ---- Failure return false ---- Success return true |
