2022-05-16 13:53:20 +00:00
|
|
|
//! Demonstrates using key modifiers (ctrl, shift).
|
|
|
|
|
2022-09-05 00:30:21 +00:00
|
|
|
use bevy::prelude::*;
|
2021-03-14 21:00:36 +00:00
|
|
|
|
|
|
|
fn main() {
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2021-03-14 21:00:36 +00:00
|
|
|
.add_plugins(DefaultPlugins)
|
2023-03-18 01:45:34 +00:00
|
|
|
.add_systems(Update, keyboard_input_system)
|
2021-03-14 21:00:36 +00:00
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
2022-07-12 13:06:16 +00:00
|
|
|
/// This system prints when `Ctrl + Shift + A` is pressed
|
2023-12-06 20:32:34 +00:00
|
|
|
fn keyboard_input_system(input: Res<ButtonInput<KeyCode>>) {
|
2023-06-15 01:37:04 +00:00
|
|
|
let shift = input.any_pressed([KeyCode::ShiftLeft, KeyCode::ShiftRight]);
|
|
|
|
let ctrl = input.any_pressed([KeyCode::ControlLeft, KeyCode::ControlRight]);
|
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
|
|
|
}
|
|
|
|
}
|