如何为我的游戏添加键盘支持?
我一直在尝试制作一个 Pong 克隆作为初学者的项目,但我遇到了障碍。我尝试了各种方法来实现键盘支持,但没有任何效果。
这里供参考的是我的 Pong.java(主类): http://pastebin.com/8d7BqK4x
这里是Board.java(图形):http://pastebin.com/N9fLMzFT
I have been trying to make a Pong clone as sort of a beginner's project, and I've hit a road block. I have tried various methods to implement keyboard support, but none have worked.
For reference here is my Pong.java(the main class): http://pastebin.com/8d7BqK4x
Here is the Board.java(Graphics): http://pastebin.com/N9fLMzFT
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只是一些一般建议,您可以添加键盘侦听器,然后解释输入,这里有一个链接,其中包含有关键盘侦听器的一些建议:http://download.oracle.com/javase/tutorial/uiswing/events/keylistener.html。对于游戏,我建议使用“按键”事件。
Just some general advice, you can add keyboard listeners and then interpret the input, here's a link with some advice on keyboard listeners: http://download.oracle.com/javase/tutorial/uiswing/events/keylistener.html. For a game, I recommend using a "key pressed" event.