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.
我目前正在自学 LWJGL 的鼠标课程,但有些事情我仍然不知道该怎么做。我希望能够处理双击鼠标事件,但我不知道如何。
它本身不受(AFAIK)支持。你必须自己做。
一种方法:记住事件日期(System.curentTimeMS() 或等效的)。如果上一个 clic 事件是最近的(~200 毫秒),则它是一个双重 clic。否则,简单的点击。
希望能帮助到你...