change camera key to C

This commit is contained in:
yuni 2024-05-13 23:01:00 +02:00
parent b51e1683b6
commit 1b7f422791
3 changed files with 7 additions and 7 deletions

View file

@ -38,7 +38,7 @@ Source code: https://codeberg.org/hut/outfly
- Q: Exit vehicle
- Tab: Toggle Augmented Reality
- M: Map
- H: 3rd person perspective
- C: Camera
- Y: Toggle rotation stabilizer
- F11: Fullscreen
- ESC: Menu
@ -50,7 +50,7 @@ Source code: https://codeberg.org/hut/outfly
- G: Toggle god mode / cheats
- V/B: Impossible acceleration forward/backward
- Shift+V/B: Same as V/B, but a thousand times faster
- C: Impossibly instant stopping
- Z: Impossibly instant stopping
- X: Teleport to target
# Running OutFly

View file

@ -7,7 +7,7 @@ F: Flashlight
Q: Exit vehicle
Tab: Toggle Augmented Reality
M: Map
H: 3rd person perspective
C: Camera
Y: Rotation stabilizer
F11: Fullscreen
ESC: Menu
@ -21,5 +21,5 @@ Cheats:
G: Toggle god mode + cheats
V/B: Impossible acceleration forward/backward
Shift+V/B: Same as V/B, but a thousand times faster
C: Impossibly instant stopping
Z: Impossibly instant stopping
X: Teleport to target

View file

@ -214,7 +214,7 @@ impl Default for Settings {
key_stop: KeyCode::Space,
key_interact: KeyCode::KeyE,
key_vehicle: KeyCode::KeyQ,
key_camera: KeyCode::KeyH,
key_camera: KeyCode::KeyC,
key_flashlight: KeyCode::KeyF,
key_rotate: KeyCode::KeyR,
key_rotation_stabilizer: KeyCode::KeyY,
@ -235,7 +235,7 @@ impl Default for Settings {
key_reply9: KeyCode::Digit9,
key_reply10: KeyCode::Digit0,
key_cheat_god_mode: KeyCode::KeyG,
key_cheat_stop: KeyCode::KeyC,
key_cheat_stop: KeyCode::KeyZ,
key_cheat_speed: KeyCode::KeyV,
key_cheat_speed_backward: KeyCode::KeyB,
key_cheat_teleport: KeyCode::KeyX,
@ -245,7 +245,7 @@ impl Default for Settings {
key_cheat_adrenaline_zero: KeyCode::F5,
key_cheat_adrenaline_mid: KeyCode::F6,
key_cheat_adrenaline_max: KeyCode::F8,
key_cheat_die: KeyCode::KeyZ,
key_cheat_die: KeyCode::F4,
}
}
}