mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
76ae6f4c6e
Does what it do. Co-authored-by: devil-ira <justthecooldude@gmail.com>
20 lines
575 B
Rust
20 lines
575 B
Rust
//! Demonstrates using key modifiers (ctrl, shift).
|
|
|
|
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins)
|
|
.add_system(keyboard_input_system)
|
|
.run();
|
|
}
|
|
|
|
/// This system prints when `Ctrl + Shift + A` is pressed
|
|
fn keyboard_input_system(input: Res<Input<KeyCode>>) {
|
|
let shift = input.any_pressed([KeyCode::LShift, KeyCode::RShift]);
|
|
let ctrl = input.any_pressed([KeyCode::LControl, KeyCode::RControl]);
|
|
|
|
if ctrl && shift && input.just_pressed(KeyCode::A) {
|
|
info!("Just pressed Ctrl + Shift + A!");
|
|
}
|
|
}
|