mytween:setPaused(true) and mytween:setPaused(false)
if your tween object is reachable by any of your variables, it won't be collected by Lua GC. Than you can resume your tween through your variable without any problem.
Ok, thanks. Somehow I understood at first that a tween will be collected anyway. So for an example, if the object is still a child of the stage, then I can resume a tween. That is good to know.
Comments
After the command
Dislikes: koeosstudio
if your tween object is reachable by any of your variables, it won't be collected by Lua GC. Than you can resume your tween through your variable without any problem.
Dislikes: koeosstudio