mitm001 пре 5 година
родитељ
комит
a6a9b0ca78
1 измењених фајлова са 2 додато и 0 уклоњено
  1. 2 0
      docs/modules/tutorials/pages/beginner/hello_input_system.adoc

+ 2 - 0
docs/modules/tutorials/pages/beginner/hello_input_system.adoc

@@ -353,9 +353,11 @@ inputManager.addJoystickConnectionListener(new JoystickConnectionListener() {
 
 .  Add mappings for moving the player (box) up and down with the H and L keys!
 .  Switch off the flyCam and override the WASD keys. +
+
 TIP: Use xref:ROOT:jme3/faq.adoc#how-do-i-switch-between-third-person-and-first-person-view[flyCam.setEnabled(false);]
 
 .  Modify the mappings so that you can also trigger the up an down motion with the mouse scroll wheel! +
+
 TIP: Use `new MouseAxisTrigger(MouseInput.AXIS_WHEEL, true)`
 
 .  In which situation would it be better to use variables instead of literals for the MouseInput/KeyInput definitions?