2022-05-16 13:53:20 +00:00
|
|
|
//! This example only enables a minimal set of plugins required for bevy to run.
|
|
|
|
//! You can also completely remove rendering / windowing Plugin code from bevy
|
|
|
|
//! by making your import look like this in your Cargo.toml.
|
|
|
|
//!
|
|
|
|
//! [dependencies]
|
|
|
|
//! bevy = { version = "*", default-features = false }
|
|
|
|
//! # replace "*" with the most recent version of bevy
|
2020-03-30 18:52:33 +00:00
|
|
|
|
2023-05-10 16:46:21 +00:00
|
|
|
use bevy::{app::ScheduleRunnerPlugin, prelude::*, utils::Duration};
|
2020-04-07 00:03:21 +00:00
|
|
|
|
2020-03-30 18:52:33 +00:00
|
|
|
fn main() {
|
2023-05-10 16:46:21 +00:00
|
|
|
// This app runs once
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2023-05-10 16:46:21 +00:00
|
|
|
.add_plugins(MinimalPlugins.set(ScheduleRunnerPlugin::run_once()))
|
2023-03-18 01:45:34 +00:00
|
|
|
.add_systems(Update, hello_world_system)
|
2020-03-30 18:52:33 +00:00
|
|
|
.run();
|
|
|
|
|
2023-05-10 16:46:21 +00:00
|
|
|
// This app loops forever at 60 fps
|
2021-07-27 20:21:06 +00:00
|
|
|
App::new()
|
2023-05-10 16:46:21 +00:00
|
|
|
.add_plugins(
|
|
|
|
MinimalPlugins.set(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
|
|
|
|
1.0 / 60.0,
|
|
|
|
))),
|
|
|
|
)
|
2023-03-18 01:45:34 +00:00
|
|
|
.add_systems(Update, counter)
|
2020-03-30 18:52:33 +00:00
|
|
|
.run();
|
|
|
|
}
|
|
|
|
|
2020-04-30 20:52:11 +00:00
|
|
|
fn hello_world_system() {
|
2020-04-30 17:42:22 +00:00
|
|
|
println!("hello world");
|
2020-03-30 18:52:33 +00:00
|
|
|
}
|
2020-05-01 20:55:07 +00:00
|
|
|
|
2020-09-10 19:56:37 +00:00
|
|
|
fn counter(mut state: Local<CounterState>) {
|
|
|
|
if state.count % 60 == 0 {
|
|
|
|
println!("{}", state.count);
|
|
|
|
}
|
|
|
|
state.count += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
struct CounterState {
|
|
|
|
count: u32,
|
|
|
|
}
|