0

我想设置影片剪辑的 rotateX 属性(因此它在 3d 中向后倾斜),但是每当我尝试使用它时

myMC.rotationX = -90;

它以一个奇怪的角度向后倾斜。如何旋转影片剪辑以使其完全笔直地向后倾斜?如何设置此变换的中心点?

4

1 回答 1

0

屏幕截图将有助于解释“......一个奇怪的角度”,但听起来你的“消失点”在错误的地方。看看http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/geom/PerspectiveProjection.html

您在父级上设置消失点(只需执行一次,除非您希望移动它或调整舞台大小),例如:

//set vanishing point to center of current DisplayObject
this.projectionCenter = new Point(this.width/2, this.height/2);

然后旋转:

myMC.rotationX = -90;
于 2013-01-06T18:50:07.147 回答