diff --git a/README.md b/README.md index 40b122c..c1cff37 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/var.rs b/src/var.rs index d7e9309..6788ed6 100644 --- a/src/var.rs +++ b/src/var.rs @@ -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,