2021-03-14 21:00:36 +00:00
|
|
|
use bevy::{
|
|
|
|
input::{keyboard::KeyCode, Input},
|
|
|
|
prelude::*,
|
|
|
|
};
|
|
|
|
|
|
|
|
fn main() {
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2021-03-14 21:00:36 +00:00
|
|
|
.add_plugins(DefaultPlugins)
|
2021-07-27 23:42:36 +00:00
|
|
|
.add_system(keyboard_input_system)
|
2021-03-14 21:00:36 +00:00
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This system prints when Ctrl + Shift + A is pressed
|
|
|
|
fn keyboard_input_system(input: Res<Input<KeyCode>>) {
|
|
|
|
let shift = input.pressed(KeyCode::LShift) || input.pressed(KeyCode::RShift);
|
|
|
|
let ctrl = input.pressed(KeyCode::LControl) || input.pressed(KeyCode::RControl);
|
|
|
|
|
|
|
|
if ctrl && shift && input.just_pressed(KeyCode::A) {
|
2021-04-22 23:30:48 +00:00
|
|
|
info!("Just pressed Ctrl + Shift + A!");
|
2021-03-14 21:00:36 +00:00
|
|
|
}
|
|
|
|
}
|