Compare commits
No commits in common. "fbf5581ea5f48129bc1da6d21c98357d9681eefb" and "b3ec9edb18f22a4e749b3ecfcfd080480d57ca0b" have entirely different histories.
fbf5581ea5
...
b3ec9edb18
6 changed files with 1 additions and 27 deletions
|
@ -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
|
||||
|
|
|
@ -55,8 +55,6 @@ We are not quite there yet, but this is what I'm aiming for:
|
|||
- No requirement for Steam or any other environment
|
||||
- No loading screens
|
||||
- No save games
|
||||
- This one is really tough though, because a lot of fun comes from being able to unlock things like suit upgrades, radio stations, phone numbers to call NPCs, etc.
|
||||
- Maybe just a minimal savegameoid which is just a list of things that have been unlocked, which can be reset from the menu easily?
|
||||
- No need to remember anything
|
||||
- Simple inventory system
|
||||
- Packaged for major Linux distributions and gaming environments
|
||||
|
|
|
@ -817,13 +817,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(
|
||||
|
|
|
@ -246,11 +246,6 @@
|
|||
- It's really delicious:
|
||||
- Right, of course.
|
||||
- Nevermind:
|
||||
- Would you like some pineapple pizza?
|
||||
- Yes, please!:
|
||||
- goto: getpineapplepizza
|
||||
- Not right now.:
|
||||
- Anything else?
|
||||
- set: $knows-pineapple
|
||||
- goto: eat
|
||||
- I made up my mind.:
|
||||
|
@ -275,14 +270,12 @@
|
|||
- goto: served
|
||||
- if: $knows-pineapple
|
||||
I'd like a pineapple pizza:
|
||||
- label: getpineapplepizza
|
||||
- Coming right up your feeding tube!
|
||||
- script: drinkpizza
|
||||
- system: Received pineapple pizza smoothie
|
||||
- goto: served
|
||||
- if: $knows-coffee
|
||||
I'd like a cup of that legendary Old Earth Soykaf, please:
|
||||
- label: getcoffee
|
||||
- Coming right up your feeding tube!
|
||||
- system: Received Old Earth Soykaf
|
||||
- goto: served
|
||||
|
@ -290,7 +283,6 @@
|
|||
- Hmm...
|
||||
- I would take you for the adventurous type.
|
||||
- Daring Durian, coming right up your feeding tube!
|
||||
- script: drinkpizza
|
||||
- system: Received Daring Durian pizza smoothie
|
||||
- goto: served
|
||||
- Actually... I haven't decided yet.:
|
||||
|
@ -314,11 +306,6 @@
|
|||
- Your suit should have a coffee dispenser built right into it.
|
||||
- Naturally, it's not as good as my legendary Old Earth Soykaf!
|
||||
- set: knows-coffee
|
||||
- Would you like some?
|
||||
- Yes, please!:
|
||||
- goto: getcoffee
|
||||
- Not right now.:
|
||||
- Anything else?
|
||||
- goto: non-pizza
|
||||
- Can't think of anything right now.:
|
||||
- So what would you like to order?
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -141,7 +141,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,
|
||||
|
@ -223,7 +222,7 @@ impl Default for Settings {
|
|||
hud_color_death_achievements: Srgba::hex(COLOR_SECONDARY).unwrap().into(),
|
||||
hud_color_keybindings: Srgba::hex(COLOR_DIM).unwrap().into(),
|
||||
hud_color_version: Srgba::hex(COLOR_PRIMARY).unwrap().into(),
|
||||
chat_speed: DEFAULT_CHAT_SPEED,
|
||||
chat_speed: DEFAULT_CHAT_SPEED * if dev_mode { 2.5 } else { 1.0 },
|
||||
ar_avatar: 0,
|
||||
flashlight_active: false,
|
||||
hud_active: true,
|
||||
|
@ -281,7 +280,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,
|
||||
|
|
Loading…
Add table
Reference in a new issue