我试图在 AS3 Flash 中确定舞台上的可拖动影片剪辑是否完全填满了舞台上的另一个影片剪辑。我用这段代码查看了另一篇 StackOverflow 文章:
var inter = mcOverlay.getRect(this).intersection(mcLoadedImage.getRect(this));
if ((inter.width * inter.height) == 0) {
return false;
} else {
return true;
}
此代码使用 intersect 方法,它有效,但我还想检查动画剪辑是否完全被舞台上的可拖动动画剪辑覆盖。
有什么建议么?谢谢!