Mothback/data/scripts/math.lua
lustlion 1e1f9edb45 kupo nice now
bow nice
aim nice
arrow nice

all nice
2021-10-25 01:41:40 +02:00

10 lines
118 B
Lua

function math.sign(x)
if x<0 then
return -1
elseif x>0 then
return 1
else
return 0
end
end