So I have a transition:
transition.to(obj1, {time=math.random(2000,5000),x=obj2.x-50,y=obj2.y-50,transition=easing.inOutBounce, tag="goingtoObj2"})
If I want to repeat the same transition, can I do reference it by something like:
transition.to(obj, {tag="goingtoObj2"})
I know I can just copy and paste the code but is there any other way of referencing it?