This website requires JavaScript.
Explore
Help
Sign In
lustlion
/
Mothback
Watch
1
Star
0
Fork
You've already forked Mothback
0
Code
Issues
Pull Requests
Releases
Wiki
Activity
531555a1d0
Mothback
/
data
/
scripts
/
math.lua
10 lines
118 B
Lua
Raw
Blame
History
function
math
.
sign
(
x
)
if
x
<
0
then
return
-
1
elseif
x
>
0
then
return
1
else
return
0
end
end
Reference in New Issue
View Git Blame
Copy Permalink