3

我在制作这个 3D 旋转菜单时遇到了问题。我的代码看起来像这样。

import flash.events.Event;

addEventListener(Event.ENTER_FRAME, onEnterFrame);

function onEnterFrame(event:Event):void
{
    anim.rotationX += ((stage.mouseY - stage.stageHeight/2)-anim.rotationX*20) * 0.009;
    anim.rotationY += ((stage.mouseX - stage.stageWidth/4)-anim.rotationY*20)  * 0.009;
}

但我不知道如何使 y 轴倒置,所以影片剪辑在 y 轴上反向移动

谁能帮忙?

4

1 回答 1

2

更改此行:

anim.rotationY += ((stage.mouseX - stage.stageWidth/4)-anim.rotationY*20)  * 0.009;

至:

anim.rotationY -= ((stage.mouseX - stage.stageWidth/4)-anim.rotationY*20)  * 0.009;
于 2012-08-16T11:05:08.893 回答