When i use jme3 to javafx.The mouse and keyboard cannot work at the same time

The mouse and keyboard cannot work at the same time, so the input bind have some problem。
i use jme-jfx11 lib for make one game editor !
it is imageView cant listen the key event and mouse event in same time

and how to set jme-jfx11 Support high resolution?it have 200% system scale (4k)

ok i fixd the bug!
code:
// node.addEventHandler(KeyEvent.KEY_PRESSED, processKeyPressed);
node.getScene().addEventHandler(KeyEvent.KEY_RELEASED, processKeyReleased);

2 Likes