Actionscript 2:在多个 MC 上进行点击测试
我正在对数千个 MC 的阵列进行命中测试,由于这种情况的性质,有时可以同时命中两个 MC。
我如何缩小范围,使受影响最大的值成为返回值?
I am running a hittest on an array of thousands of MCs a little a part, due to the nature of this sometimes two can be hit at once.
How would I narrow it down so that the one which is hit the most is the one returned value?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
每次点击特定的影片剪辑时都有一个特定的变量增量。
将所有这些变量放入一个数组中。
对数组进行降序排序。
选择数组中的第一个元素 (myArray[0]),因为它将具有最高值
Have a specific variable increment each time a specific movieclip is hit.
Place all of these variables in an array.
sortOn the array for DESCENDING order.
select the first element in the array (myArray[0]), as that will have the highest value