0

I'm new to jMonkeyEngine so I hope my question is not too much stupid. I followed this tutorial step by step : http://hub.jmonkeyengine.org/wiki/doku.php/jme3:beginner:hello_simpleapplication

But unfortunately, when I tested the key arrows, I found out that the left key arrow brings me at right, the top one to the bottom,...

How can I fix this? Otherwise, how can I configure the key arrows and the mouse to move to the right direction?

Thank you

loulou
  • 331
  • 1
  • 5
  • 20

1 Answers1

0

Your mouse and keyboard control the camera, not objects in the scene (by default at least). This makes a lot more sense when there is more than one object in the scene, a street for example.

When you press up you move the camera upwards; as a result all objects in the scene appear to go downwards. The same for all the other directions

Richard Tingle
  • 16,906
  • 5
  • 52
  • 77