when i moving in my scene,my mouse moves very fast.i want to make my mouses moving slower.how can i do that?
and my keyboard is moving very fast too.please help me
SimpleGame uses a FirstPersonHandler to controll the camera.
You can alter the Mouse and Keyboard speed that way:
protected void simpleInitGame() {
((FirstPersonHandler)input).getMouseLookHandler().setActionSpeed(0.5f);
((FirstPersonHandler)input).getKeyboardLookHandler().setActionSpeed(10);
}
thanks a lot core-dump.these codes solved my problem finally