I’ve got a group holding my screen elements. As a transition from one page (group) to the other, I use different transition effects.
For this particular effect, I’m transitioning to the next page using a zoom-out-function, like this:
transitionNewScreen = function( group )
group:setReferencePoint( display.CenterReferencePoint )
group:scale( 2, 2 )
group.alpha = 0
transition.to( group, { time = t, xScale = 1, yScale = 1, alpha = 1, transition = ease } )
end
However, as soon as I set a scale ANY OTHER than 1, the group won’t appear at all. It’s not in the transition because when I leave that part out (and set group.alpha to 1), it won’t show up either.
The group contains two objects:
\_class table: 080268B8
\_proxy userdata: 08122390
_class holds:
removeEventListener function: 027FF2940
initProxy function: 02721768
addEventListener function: 07FF18C0
\_\_index table: 0802EC28
What’s happening here? Any ideas? [import]uid: 86582 topic_id: 28869 reply_id: 328869[/import]
