After realising how to apply a transition to a rounded rect, I’m having an issue
local rect = display.newRoundedRect(200, 200, 100, 100, 10) rect.anchorX = 0 transition.to(rect.path, { time = 1000, width = 200 })
I’ve a similar code like the above one. Note that I’m setting the anchorX to 0, but when doing the transition the anchorX seems to be 0.5
Is there any way to solve it without using xScale instead of width?