So I'm making a script with ruby that must render frames at 24 frames per second, but I need to wait 1/24th of a second between sending the commands... how can I do that?
sleep
seems to only wait in increments of 1 second or more.
update
Well ya you can do sleep 0.1
if you want, but is this the best way to delay in a ruby script?