diff options
| author | jussi | 2024-07-06 01:03:02 +0300 |
|---|---|---|
| committer | jussi | 2024-07-06 01:03:02 +0300 |
| commit | 528f3f3d822c8e9d3e72228cf5d7fc3d4daae483 (patch) | |
| tree | 9a122a3a3ed92b33e372fb53dc8e9717ecb7bd01 /ReiLua_API.lua | |
| parent | 61c932f2605aac5a8fef4264087e9ea8f86c6760 (diff) | |
| download | reilua-enhanced-528f3f3d822c8e9d3e72228cf5d7fc3d4daae483.tar.gz reilua-enhanced-528f3f3d822c8e9d3e72228cf5d7fc3d4daae483.tar.bz2 reilua-enhanced-528f3f3d822c8e9d3e72228cf5d7fc3d4daae483.zip | |
Raymath *Equals functions return bool instead of int.
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 dd7980d..135176e 100644 --- a/ReiLua_API.lua +++ b/ReiLua_API.lua @@ -5470,7 +5470,7 @@ function RL.Remap( value, inputStart, inputEnd, outputStart, outputEnd ) end function RL.Wrap( value, min, max ) end ---Check whether two given floats are almost equal ----- Success return int +---- Success return bool ---@param x number ---@param y number ---@return any result @@ -5660,7 +5660,7 @@ function RL.Vector2Clamp( v, min, max ) end function RL.Vector2ClampValue( v, min, max ) end ---Check whether two given vectors are almost equal ----- Success return int +---- Success return bool ---@param v1 table ---@param v2 table ---@return any result @@ -5909,7 +5909,7 @@ function RL.Vector3Clamp( v, min, max ) end function RL.Vector3ClampValue( v, min, max ) end ---Check whether two given vectors are almost equal ----- Success return int +---- Success return bool ---@param v1 table ---@param v2 table ---@return any result @@ -6224,7 +6224,7 @@ function RL.QuaternionToEuler( q ) end function RL.QuaternionTransform( q, mat ) end ---Check whether two given quaternions are almost equal ----- Success return int +---- Success return bool ---@param q1 table ---@param q2 table ---@return any result |
