Java动画,带有关键监听器
I tried to make it so that,if I pressed the right/left key, the sprite/Mario would face right/left. If I pressed the right key, he would face right. But for some reason, When I pressed the left key, he won't face left.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
“要触发键盘事件,组件必须具有键盘焦点。”—如何编写关键监听器
"To fire keyboard events, a component must have the keyboard focus."—How to Write a Key Listener
不要使用 KeyListener。而是使用按键绑定,它更灵活并且可供所有人使用摆动组件。
Don't use a KeyListener. Instead use Key Bindings which are more flexible and are used by all Swing components.