在我的3D旋转菜单中反转y轴(as3)

时间:2012-08-16 09:23:19

标签: actionscript-3 flash 3d

我遇到了制作这个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轴反转,所以movieclip在y轴上相反移动

任何人都可以帮忙吗?

1 个答案:

答案 0 :(得分: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;