bevy/examples/ecs/startup_system.rs

21 lines
484 B
Rust
Raw Normal View History

//! Demonstrates a startup system (one that runs once when the app starts up).
2020-07-28 20:43:07 +00:00
use bevy::prelude::*;
2020-05-01 20:12:47 +00:00
fn main() {
App::new()
.add_systems(Startup, startup_system)
.add_systems(Update, normal_system)
2020-05-01 20:12:47 +00:00
.run();
}
/// Startup systems are run exactly once when the app starts up.
/// They run right before "normal" systems run.
fn startup_system() {
println!("startup system ran first");
}
fn normal_system() {
println!("normal system ran second");
}