我有三个盒子分别绕着它们的 Z 轴旋转。如果我将它们从舞台中心移开,我想要做的是让它们围绕各自的 Z 轴旋转而不会扭曲。
addEventListener(Event.ENTER_FRAME, rotateBoxes);
function rotateBoxes(e:Event):void
{
box1.rotationY-=10;
box2.rotationY+=10;
box3.rotationY-=10;
}
例如这里http://www.hupcapstudios.com/tween1.swf
有没有像...这样的内置参数
box1.globalPerspective = false;
绕 x 轴旋转更明显