Skip to content

Instantly share code, notes, and snippets.

@akilism
Last active August 29, 2015 14:19
Show Gist options
  • Save akilism/7516adc88391965cc413 to your computer and use it in GitHub Desktop.
Save akilism/7516adc88391965cc413 to your computer and use it in GitHub Desktop.
some common functions for pico8
--some helpers
function rndint(x)
return flr(rnd(x))
end
function dir()
if randint(2) == 1 then
return 1
else
return -1
end
end
function randRangeFloat(min, max)
return rnd(max - min) + min
end
function randRangeInt(min, max)
return rndint(max - min) + min
end
--end helpers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment