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.
有什么方法可以让 Windows 8 多点触控事件与 PyGame 一起使用?有没有办法从 Windows 中的 Python 中访问触摸事件?
Pygame 不直接支持多点触控,并且本质上将多点触控交互作为单独的鼠标事件排队。但是,您可以绕过 pygame 鼠标事件系统并利用touchpy库来处理/处理触摸和多点触控输入。可以在此处查看处理此确切问题的一系列教程。为方便起见,这里是教程一、二、三和四的链接。教程 3 和 4 可能会让您特别感兴趣,因为它展示了将 pygame 与 touchpy 集成的示例。