[]hitTestPrior无效
我想利用hitTestPrior进行鼠标事件监测:
viewStack.on(Laya.Event.MOUSE_DOWN, this, this.onStageMouseDown);
img.on(Laya.Event.MOUSE_DOWN, this, this.onImageMouseDown);
viewStack.addChild(img);
然而不管设置是true还是false,都是子元素先检测到mousedown事件,请问是不是hitTestPrior无效?
viewStack.on(Laya.Event.MOUSE_DOWN, this, this.onStageMouseDown);
img.on(Laya.Event.MOUSE_DOWN, this, this.onImageMouseDown);
viewStack.addChild(img);
然而不管设置是true还是false,都是子元素先检测到mousedown事件,请问是不是hitTestPrior无效?
没有找到相关结果
已邀请:
要回复问题请先登录
1 个回复
cuixueying
赞同来自:
设置hitTestPrior=true,后,只能点击父级限制区域,点击其他区域无效。。。你可以自己写个例子测试下!