在as3中向不同方向拍摄

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在as3中向不同方向拍摄相关的知识,希望对你有一定的参考价值。

我正在制作的游戏遇到一些麻烦。我的角色射击子弹,但是当它朝不同方向射击它时它不能正常工作。当它射击子弹时,遵循角色的方向。下面我发布代码。

var Bulli:Array = new Array();
var ShootTimer:Timer = new Timer(0);
stage.addEventListener(MouseEvent.MOUSE_DOWN, startShootTimer);
stage.addEventListener(MouseEvent.MOUSE_UP, stopShootTimer);
ShootTimer.addEventListener(TimerEvent.TIMER, shootBullo);
stage.addEventListener(Event.ENTER_FRAME, mainLoop);

function startShootTimer(e:MouseEvent):void
{
    ShootTimer.start();
}
function stopShootTimer(e:MouseEvent):void
{
    ShootTimer.stop();
}       
function shootBullo(e:TimerEvent):void
{
    var bullo:Bullo = new Bullo();
    bullo.x = Jumbo.x;
    bullo.y = Jumbo.y - 50; 

    if(destra)
    {
        bullo.dir = destra;
    }
    else
    {
        bullo.dir = sinistra;
    }

    addChild(bullo);
    Bulli.push(bullo);
}       
function mainLoop (e:Event):void
{
    for (var b:int = 0; b < Bulli.length; b++)
    {
        if (Bulli[b].dir == destra)
        {
            Bulli[b].x += 10;
        }
        else
        {
            Bulli[b].x -= 10;
        }

    }
}
答案

不要将该监听器添加到Stage,而是将其添加到每个唯一的bullo ...

//# not to Stage...
//stage.addEventListener(Event.ENTER_FRAME, mainLoop);

尝试这个(未经测试但可能对某些想法有用):

function shootBullo(e:TimerEvent):void
{
    var bullo:Bullo = new Bullo();
    bullo.x = Jumbo.x;
    bullo.y = Jumbo.y - 50; 

    if(destra) { bullo.dir = destra; }
    else { bullo.dir = sinistra; }

    bullo.addEventListener(Event.ENTER_FRAME, mainLoop);
}

function mainLoop (e:Event):void //the "e" of this function parameter is each unique "Bullo"
{
    //# currentTarget is whichever "bullo" is talking to this Event (via Listener).
    if (e.currentTarget.dir == destra) 
    { e.currentTarget.x += 10; }

    else { e.currentTarget.x -= 10; }

}

以上是关于在as3中向不同方向拍摄的主要内容,如果未能解决你的问题,请参考以下文章

在 AS3 中向子影片剪辑添加/删除事件侦听器

在android中使用phonegap时,从画廊拍摄的图像以不同的方向显示

为不同方向使用不同布局时,在方向更改时保存片段状态

As3 如何翻转影片剪辑以面对运动方向?

手动设置片段的屏幕方向

如何在不使用意图的片段中拍摄和保存图片?