What is the best way to repeat a short animation in LUA?
here’s what I have:
local halomove = display.newImage( “haloLg.png” )
transition.to( halomove, { time=1100, alpha=0} )
transition.to( halomove, { time=1100, delay=2200, alpha=1.0 } )
transition.to( halomove, { time=1100, delay=4400,alpha=0} )
I want to repeat the above sequence - I basically want an image to fade in & out repeatedly - is there a better way to do this than the direction I’m taking?
Thanks in advance for any advice,
Will [import]uid: 2862 topic_id: 462 reply_id: 300462[/import]