diff options
| author | jussi | 2023-10-30 00:04:11 +0200 |
|---|---|---|
| committer | jussi | 2023-10-30 00:04:11 +0200 |
| commit | d287078c658d26d41a28f92b62b023048c5503ce (patch) | |
| tree | fb045110fde9329782d21324cc7a9092128a1126 /ReiLua_API.lua | |
| parent | 992310fb90832ddf493ec33f1099dbbf3e0987f3 (diff) | |
| download | reilua-enhanced-d287078c658d26d41a28f92b62b023048c5503ce.tar.gz reilua-enhanced-d287078c658d26d41a28f92b62b023048c5503ce.tar.bz2 reilua-enhanced-d287078c658d26d41a28f92b62b023048c5503ce.zip | |
Userdata objects can be referenced with lightuserdata.
Diffstat (limited to 'ReiLua_API.lua')
| -rw-r--r-- | ReiLua_API.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ReiLua_API.lua b/ReiLua_API.lua index 4431cbc..fa5fef6 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -2619,13 +2619,13 @@ function RL.GetTextureFormat( texture ) end ---@return any id function RL.GetRenderTextureId( renderTexture ) end ----Get color buffer attachment texture +---Get color buffer attachment texture. Returns as lightuserdata ---- Success return Texture ---@param renderTexture any ---@return any texture function RL.GetRenderTextureTexture( renderTexture ) end ----Get depth buffer attachment texture +---Get depth buffer attachment texture. Returns as lightuserdata ---- Success return Texture ---@param renderTexture any ---@return any texture @@ -3178,7 +3178,7 @@ function RL.GetMaterialColor( material, mapType ) end function RL.GetMaterialValue( material, mapType ) end ---Get material shader ----- Success return Shader +---- Success return Shader. Returns as lightuserdata ---@param material any ---@return any shader function RL.GetMaterialShader( material ) end |
