Raymath *Equals functions return bool instead of int.

This commit is contained in:
jussi
2024-07-06 01:03:02 +03:00
parent 61c932f260
commit 528f3f3d82
15 changed files with 154 additions and 126 deletions

View File

@@ -36,7 +36,7 @@ local metatable = {
return 3
end,
__eq = function( v1, v2 )
return RL.Vector3Equals( v1, v2 ) == 1
return RL.Vector3Equals( v1, v2 )
end,
__concat = function( a, b )
return tostring( a )..tostring( b )