Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用 Flash CS5.5 制作的简单游戏,用户只需轻按一个对象并获得分数。无论如何我可以在游戏中实现多点触控,而无需再次执行所有操作,以便用户可以用不同的手指触摸不同的对象?
您是否尝试过将您的应用设置为多点触控模式:
Multitouch.inputMode=MultitouchInputMode.TOUCH_POINT;
将您的MouseEvent.CLICK事件侦听器更改为TouchEvent.TOUCH_TAP
MouseEvent.CLICK
TouchEvent.TOUCH_TAP
这应该让您朝着正确的方向前进……您有具体的实施问题吗?