bevy/examples/input/keyboard_input.rs
Mateusz Wachowiak 1f97717a3d
Rename Input to ButtonInput (#10859)
# Objective

- Resolves #10853 

## Solution

- ~~Changed the name of `Input` struct to `PressableInput`.~~
- Changed the name of `Input` struct to `ButtonInput`.

## Migration Guide

- Breaking Change: Users need to rename `Input` to `ButtonInput` in
their projects.
2023-12-06 20:32:34 +00:00

25 lines
589 B
Rust

//! Demonstrates handling a key press/release.
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Update, keyboard_input_system)
.run();
}
/// This system prints 'A' key state
fn keyboard_input_system(keyboard_input: Res<ButtonInput<KeyCode>>) {
if keyboard_input.pressed(KeyCode::A) {
info!("'A' currently pressed");
}
if keyboard_input.just_pressed(KeyCode::A) {
info!("'A' just pressed");
}
if keyboard_input.just_released(KeyCode::A) {
info!("'A' just released");
}
}