When ever I use easing.continuousLoop I have do double all my values. For example if I want to scale the image twice as large instead of doing yScale=2, xScale=2 I have to do yScale=4, xScale=4. Or if I want to move the image to 100,100 I have to do x=200, y=200. I’m just wondering what the logic is behind this so I can maybe understand it better.
In my mind it should work the exact same as transtions do normally just it returns to the original object. So if you do xScale=2 it should scale twice as large then return back to normal. Everytime I use easing.continuousLoop I’m very confused when something isn’t working only to realize that I didn’t double my value.