24 lines
		
	
	
		
			575 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			575 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use bevy::{prelude::*, window::ReceivedCharacter};
 | |
| 
 | |
| fn main() {
 | |
|     App::build()
 | |
|         .add_plugins(DefaultPlugins)
 | |
|         .add_system(print_char_event_system.system())
 | |
|         .run();
 | |
| }
 | |
| 
 | |
| #[derive(Default)]
 | |
| struct State {
 | |
|     event_reader: EventReader<ReceivedCharacter>,
 | |
| }
 | |
| 
 | |
| /// This system prints out all char events as they come in
 | |
| fn print_char_event_system(
 | |
|     mut state: Local<State>,
 | |
|     char_input_events: Res<Events<ReceivedCharacter>>,
 | |
| ) {
 | |
|     for event in state.event_reader.iter(&char_input_events) {
 | |
|         println!("{:?}: '{}'", event, event.char);
 | |
|     }
 | |
| }
 | 
