Advertisement
alestane

Repeating Transition

Dec 16th, 2012
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local function phaseOne(self)
  2.     transition.to( self.display,  { time=1000, x = 25, onComplete = self.moveHangerGun} )
  3. end
  4.  
  5. function hangerGun:moveHangerGun()
  6.     transition.to( self.display,  { time=1000, x = 450, onComplete = phaseOne} )
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement