0

我有两个圆形物体。我试图在圆圈接触时立即检测。当一个圆圈到达另一个圆圈的中心时,跟踪检测到碰撞,但我希望在圆圈接触时立即检测到碰撞。

我的两个符号是 coin_mc 和 mugbounds_mc。

function checkHitArea(evt:Event)
{

 if (coin_mc.hitTestPoint(mugbounds_mc.x,mugbounds_mc.y, true)) {
  coin_mc.x=-1;
  coin_mc.y=-1;

                trace("Hit Mug"); // Is triggered when coin_mc reaches center of mugbounds_mc
        }
        else
        {
                trace("Didn't Hit Mug");
        }
}
4

1 回答 1

1

尝试这个:

addEventListener(Event.ENTER_FRAME, checkHitArea)

function checkHitArea(e:Event) 
{
    a.x += 2;
    if (a.hitTestPoint(b.x,b.y, false)) 
    { 
        // do our in-circle check
        if((a.x - b.x) * 2 + (a.y - b.y) * 2 <= (a.width/2 + b.width/2) * 2)
        {
            trace("hit");
        }
    }
    else
    {
        trace("Didn't Hit Mug");
    }
}

我将您的影片剪辑重命名为 a 和 b。

于 2011-01-14T02:01:45.593 回答