jMonkeyEngine / jMonkeyEngine/jmonkeyengine
Android: Mouse and Keyboard are no longer emulated by default in 3.10.0
Open
- Dominant language
- Java
- Stars
- 4.3k
- Forks
- 1.2k
- Avg merge
- 4d 7h
- Merged PRs (30d)
- 14
Description
After upgrading Android app from 3.9.0 to 3.10.0-stable2, emulateMouse and emulateKeyboard default to false. Previously in 3.9.0 AndroidHarnessFragment defaulted both to true.
This means things like flyCam's drag-to-rotate no longer work.
Workaround is to explicitly set them to true in AppSettings:
settings.setEmulateMouse(true);
settings.setEmulateKeyboard(true);
Expected behaviour is for the defaults to remain the same as in 3.9.0-stable; i.e. true
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Assessment
This issue has not been assessed yet.