diff options
| author | jussi | 2025-08-30 16:41:05 +0300 |
|---|---|---|
| committer | jussi | 2025-08-30 16:41:05 +0300 |
| commit | de672a85d2778c47fce0d412cea787405388330c (patch) | |
| tree | fcae06a78397f52bc819c99cdbeaa417c48cf57b /ReiLua_API.lua | |
| parent | 15deeccc4bcbe5b68f002f8cc91ee4ed8ced68fb (diff) | |
| download | reilua-enhanced-de672a85d2778c47fce0d412cea787405388330c.tar.gz reilua-enhanced-de672a85d2778c47fce0d412cea787405388330c.tar.bz2 reilua-enhanced-de672a85d2778c47fce0d412cea787405388330c.zip | |
DrawMeshInstanced takes transforms as Buffer.
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 47e696e..e5640d6 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -2349,21 +2349,21 @@ function RL.EncodeDataBase64( data ) end ---@return any outputSize function RL.DecodeDataBase64( data ) end ----Compute CRC32 hash code. Note! Buffer should be type BUFFER_UNSIGNED_CHAR +---Compute CRC32 hash code. ---- Failure return false ---- Success return int ---@param data any ---@return any code function RL.ComputeCRC32( data ) end ----Compute MD5 hash code, returns static int[4] (16 bytes). Note! Buffer should be type BUFFER_UNSIGNED_CHAR +---Compute MD5 hash code, returns static int[4] (16 bytes). ---- Failure return false ---- Success return int{4} ---@param data any ---@return any code function RL.ComputeMD5( data ) end ----Compute SHA1 hash code, returns static int[5] (20 bytes). Note! Buffer should be type BUFFER_UNSIGNED_CHAR +---Compute SHA1 hash code, returns static int[5] (20 bytes). ---- Failure return false ---- Success return int{5} ---@param data any @@ -5250,7 +5250,7 @@ function RL.DrawMesh( mesh, material, transform ) end ---Draw multiple mesh instances with material and different transforms ---@param mesh any ---@param material any ----@param transforms table +---@param transforms any ---@param instances integer ---@return any RL.DrawMeshInstanced function RL.DrawMeshInstanced( mesh, material, transforms, instances ) end |
