Hi,
i just tried for the first time the easing function “easing.continuousLoop”. i made following little example:
local circle = display.newCircle( 100, 100, 30 )
circle.anchorX, circle.anchorY = 0.5, 0.5
circle:setFillColor(1,0,0,1)
transition.to( circle, {time = 5000, y = 400, transition = easing.continuousLoop} )
Now i would have expected that the transition moves the circle from its current position to the y coordinate of 400 and then returns it to the starting position. But that did not happen. After transition.to the circle is at the y coord 400 and not 100.
Do i understand something wrong or is it a bug? I use the last public release.
Thomas