小编Max*_*sle的帖子

按键监听器不起作用

我正在编写一个类似炸弹人的游戏,但我的 KeyListener 有问题。

\n\n

问题是,当游戏运行时,KeyListener 不会响应,但是当它不运行时,它会执行我告诉他的操作。

\n\n

这是我的代码

\n\n
public class direction extends Canvas implements KeyListener {\n\nstatic float bmx = 35;\nstatic float bmy = 35;\nstatic float v = 0.03f;\n\npublic static BufferStrategy strategie;\npublic static BufferedImage image;\n\npublic direction()  {                                           //pas s\xc3\xbbr de ce que \xc3\xa7a fait\n    GraphicsEnvironment ge =                                    //on m\'a dit de le mettre           \n            GraphicsEnvironment.getLocalGraphicsEnvironment();  //le programme marche tr\xc3\xa8s bien sans\n    GraphicsDevice gd = ge.getDefaultScreenDevice();\n    GraphicsConfiguration gc = gd.getDefaultConfiguration();\n    image =  gc.createCompatibleImage(700,  700);\n    setSize(700, 700);\n\n}\n\n    static boolean gauche;\n    static boolean …
Run Code Online (Sandbox Code Playgroud)

java swing keylistener key-bindings java-canvas

1
推荐指数
1
解决办法
9938
查看次数

标签 统计

java ×1

java-canvas ×1

key-bindings ×1

keylistener ×1

swing ×1