Joystick event.

This commit is contained in:
jussi
2023-11-18 17:11:36 +02:00
parent 5c8324d25f
commit d19864947b
8 changed files with 85 additions and 4 deletions

View File

@@ -166,4 +166,8 @@ function utillib.tableMove( t, src, len, dest )
table.move( copy, 1, len, dest, t )
end
function utillib.randomFloat( min, max )
return min + math.random() * ( max - min );
end
return utillib