我创建了一些由各种音符组成的精灵,当光标精灵移动到其中一个音符时,它会使用相交闪烁。我不知道如何让光标检测它重叠的音符。任何人都可以提供一个例子吗?
答案 0 :(得分:2)
尝试
getObjectsUnderPoint(stage.mouseX, stage.mouseY);
或
for each (var spr:Sprite in notes) {
if (spr.hitTestPoint (stage.mouseX, stage.mouseY)) {
// some code here
}
}
这些文档页面可能有所帮助:getObjectsUnderPoint,hitTestPoint