I migrated my app to use G2, and there is a strange thing for scrollView, is this a default behavior or a bug? (This is not happening in G1)
I have a scrollView and I put images on it by using some transition like this
picObj.alpha = 0.3 picObj.xScale = 0.1 picObj.yScale = 0.1 transition.to(picObj, {time = 300, alpha = 1, xScale=1, yScale=1})
So I can see my images zoom from scale 0.1 to scale 1, but if I scroll it (or exit the scene/re-enter again) during the transitions, some images are stuck at the middle of their transitions (e.g. scale 0.5, alpha 0.5).
This is not happening before in G1, is there any thing new I should be aware of for G2? (or new method to do things like this?) or is this a bug for G2?