I believe Codea's tweens can do all these things (apart from using units other than seconds, which I can't see a need for).
This is how to pause tweens (thanks to toffer)
local update,noop = tween.update,function() end
tween.pauseAll = function()
tween.update = noop
end
tween.resumeAll = function()
tween.update = update
end
Comments
I believe Codea's tweens can do all these things (apart from using units other than seconds, which I can't see a need for).
This is how to pause tweens (thanks to toffer)
Nice trick to pause a tween :-bd, thank you.