use bevy::{app::ScheduleRunnerPlugin, prelude::*, utils::Duration};
fn main() {
App::new()
.add_plugins(MinimalPlugins.set(ScheduleRunnerPlugin::run_once()))
.add_systems(Update, hello_world_system)
.run();
App::new()
.add_plugins(
MinimalPlugins.set(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
1.0 / 60.0,
))),
)
.add_systems(Update, counter)
.run();
}
fn hello_world_system() {
println!("hello world");
}
fn counter(mut state: Local<CounterState>) {
if state.count % 60 == 0 {
println!("{}", state.count);
}
state.count += 1;
}
#[derive(Default)]
struct CounterState {
count: u32,
}