mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
b724a0f586
# Objective - Remove all the `.system()` possible. - Check for remaining missing cases. ## Solution - Remove all `.system()`, fix compile errors - 32 calls to `.system()` remains, mostly internals, the few others should be removed after #2446
29 lines
751 B
Rust
29 lines
751 B
Rust
use bevy::prelude::*;
|
|
use std::{io, io::BufRead};
|
|
|
|
struct Input(String);
|
|
|
|
/// This example demonstrates you can create a custom runner (to update an app manually). It reads
|
|
/// lines from stdin and prints them from within the ecs.
|
|
fn my_runner(mut app: App) {
|
|
println!("Type stuff into the console");
|
|
for line in io::stdin().lock().lines() {
|
|
{
|
|
let mut input = app.world.get_resource_mut::<Input>().unwrap();
|
|
input.0 = line.unwrap();
|
|
}
|
|
app.update();
|
|
}
|
|
}
|
|
|
|
fn print_system(input: Res<Input>) {
|
|
println!("You typed: {}", input.0);
|
|
}
|
|
|
|
fn main() {
|
|
App::new()
|
|
.insert_resource(Input(String::new()))
|
|
.set_runner(my_runner)
|
|
.add_system(print_system)
|
|
.run();
|
|
}
|