remove "`" (backquote) keybinding

This commit is contained in:
yuni 2024-10-26 00:40:24 +02:00
parent 5723fd909b
commit 3234b1f4bb
4 changed files with 0 additions and 11 deletions

View file

@ -54,7 +54,6 @@ Press **ESC** to view these any time from the in-game menu.
- **T**: Cruise control
- **R**: Rotate (hold + move mouse)
- **Y**: Rotation stabilizer
- **`**: Fast forward conversation
- **AWSD/Shift/Ctrl**: Move
- **J/K/U/L/I/O**: Rotate
- **F11**: Fullscreen

View file

@ -828,13 +828,6 @@ fn handle_reply_keys(
}
selected_choice += 1;
}
if keyboard_input.just_pressed(settings.key_next_chat_line) {
if let Ok(mut chat) = q_chats.get_single_mut() {
evwriter_sfx.send(audio::PlaySfxEvent(audio::Sfx::Click));
chat.timer = 0.0;
}
}
}
pub fn handle_chat_scripts(

View file

@ -7,7 +7,6 @@ C: Camera
T: Cruise control
R: Rotate (hold + move mouse)
Y: Rotation stabilizer
`: Fast forward conversation
AWSD/Shift/Ctrl: Move
J/K/U/L/I/O: Rotate
F11: Fullscreen

View file

@ -143,7 +143,6 @@ pub struct Settings {
pub key_reply8: KeyCode,
pub key_reply9: KeyCode,
pub key_reply10: KeyCode,
pub key_next_chat_line: KeyCode,
pub key_cheat_god_mode: KeyCode,
pub key_cheat_stop: KeyCode,
pub key_cheat_speed: KeyCode,
@ -286,7 +285,6 @@ impl Default for Settings {
key_reply8: KeyCode::Digit8,
key_reply9: KeyCode::Digit9,
key_reply10: KeyCode::Digit0,
key_next_chat_line: KeyCode::Backquote,
key_cheat_god_mode: KeyCode::KeyG,
key_cheat_stop: KeyCode::KeyZ,
key_cheat_speed: KeyCode::KeyV,