swap flashlight/camera keys. F=flashlight, H=3rd person mode

This commit is contained in:
yuni 2024-05-07 17:51:30 +02:00
parent e08339ad5e
commit 8627934993
2 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@ Source code: https://codeberg.org/hut/outfly
- AWSD/Shift/Ctrl: Accelerate
- R: Rotate (hold & move mouse)
- E: Interact: Talk to people, enter vehicles
- H: Flashlight
- F: Flashlight
- Q: Exit vehicle
- JKULIO: Mouseless camera rotation
- Augmented Reality: (toggle with Tab)
@ -43,7 +43,7 @@ Source code: https://codeberg.org/hut/outfly
- Settings
- Tab: Toggle HUD/AR
- M: Toggle map
- F: Toggle 3rd person view
- H: Toggle 3rd person view
- Y: Toggle rotation stabilizer
- F2: Toggle shadows
- F3: Toggle sound effects

View file

@ -196,8 +196,8 @@ impl Default for Settings {
key_stop: KeyCode::Space,
key_interact: KeyCode::KeyE,
key_vehicle: KeyCode::KeyQ,
key_camera: KeyCode::KeyF,
key_flashlight: KeyCode::KeyH,
key_camera: KeyCode::KeyH,
key_flashlight: KeyCode::KeyF,
key_shadows: KeyCode::F2,
key_rotate: KeyCode::KeyR,
key_rotation_stabilizer: KeyCode::KeyY,