This is the correct way for using Delta Time with transitions, right?
You would multiply dt with the time of the transition:
transition.to( Tmp, {x = Image.x, y = Image.y, delay = math.random(100, 450) , time = ITEMS_TRANS_TIME*bubblesMatch3.dt})
NOT like this :
transition.to( Tmp, {x = Image.x*bubblesMatch3.dt, y = Image.y*bubblesMatch3.dt, delay = math.random(100, 450) , time = ITEMS_TRANS_TIME})
Would you also multiply the dt with the delay?
transition.to( Tmp, {x = Image.x, y = Image.y, delay = math.random(100, 450)*bubblesMatch3.dt, time = ITEMS_TRANS_TIME*bubblesMatch3.dt})
Also, what is params.delta used for? Don’t really understand this.