Simple question but I can't figure it out.
In a function I have this:
transition.to( object, { time=300, alpha=1, tag= "moveObject", x=500, y=50, onComplete= end } )
I have a function that I want to use to update the transition when it's still "alive".
Function updateObject(tagname)
--update the transition.to x with +50
End
How can I update the transition in the function ?