我有两个圆形物体。我试图在圆圈接触时立即检测。当一个圆圈到达另一个圆圈的中心时,跟踪检测到碰撞,但我希望在圆圈接触时立即检测到碰撞。
我的两个符号是 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");
}
}