You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a possibility to check whether a tween is active or not? Do I have to do it with :oncomplete ? Or can I manually check it if I store the tween as a variable like this:
myTween=flux.to(self, 4, {x=300})
...
if myTween:isActive() then
...
end