Skip to main content
Inspiring
September 20, 2012
Question

iOS6 - Using a "z" property of display objects makes them vanish

  • September 20, 2012
  • 2 replies
  • 570 views

I recently did the upgrade to AIR 3.4 for my app and I am testing on iOS6 on an iPad 2 & 3.

When I assign any display object a "z" value, it disappears on iOS.

var ball:Sprite = new Sprite();

ball.graphics.beginFill(0x000000,1);

ball.graphics.drawCircle(0,0,100);

addChild(ball);

ball.z = 0;

ball is no where to be found

I am also using GPU mode

This topic has been closed for replies.

2 replies

September 21, 2012

I am conforming that as well!

I have rotationY on sprites, they worked fine in iOS5 and now not showing up in iOS6!..

I am on the latest version as of 2012-Sep-20, of AIR 3.4.0.2540.

Please help!

Participant
September 20, 2012

I can confirm that this is occurring on my game as well. ios6 seems unable to handle 3d transformations on 2d sprites. Even rotationX/rotationY will cause the item to disappear.

I'm hoping a new AIR release will solve this, ASAP