鼠标点击有时无法正常工作

时间:2015-05-31 05:43:52

标签: actionscript-3

我为eventlistener使用了MouseEvent.CLICK。如果我点击一次,它有时不会拍摄,但是当我再次点击它会拍摄。这是闪存或鼠标中的问题吗?很奇怪。这是我的火灾事件的代码。

function fire(m: Event)
    {
        //reset the cooldown
        //spawn a bullet
        //set the position and the rotation of the bullet
            b.rotation = turret.rotation;
            b.x = turret.x;
            b.y = turret.y;
            //add the bullet to the parent object
            parent.addChild(b);
    }

0 个答案:

没有答案