From 1b7f422791e901a656b9812d09ab0fbb5dd100ea Mon Sep 17 00:00:00 2001 From: hut Date: Mon, 13 May 2024 23:01:00 +0200 Subject: [PATCH] change camera key to C --- README.md | 4 ++-- src/data/keybindings.in | 4 ++-- src/var.rs | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 8f7fcbe..90dcaac 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/data/keybindings.in b/src/data/keybindings.in index f842306..2a03883 100644 --- a/src/data/keybindings.in +++ b/src/data/keybindings.in @@ -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 diff --git a/src/var.rs b/src/var.rs index 62c966d..dc2195a 100644 --- a/src/var.rs +++ b/src/var.rs @@ -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, } } }