Skip to content

Instantly share code, notes, and snippets.

@vib3oh
Created November 15, 2012 17:27
Show Gist options
  • Save vib3oh/4079931 to your computer and use it in GitHub Desktop.
Save vib3oh/4079931 to your computer and use it in GitHub Desktop.
End a playing AKtween
--Create and apply an AKtween
local tween = AKtween:newTween({...})
local obj = display.newCircle(0,0,20)
tween:apply(obj, 'tweenName')
--Play tween
obj:playTween('tweenName')
--End tween
obj:finishTween()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment