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>>) {
|
2021-09-01 21:21:41 +00:00
|
|
|
let shift = input.any_pressed([KeyCode::LShift, KeyCode::RShift]);
|
|
|
|
let ctrl = input.any_pressed([KeyCode::LControl, KeyCode::RControl]);
|
2021-03-14 21:00:36 +00:00
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|