bevy/examples/app/headless.rs

44 lines
1.1 KiB
Rust
Raw Normal View History

//! 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
use bevy::{app::ScheduleRunnerPlugin, prelude::*, utils::Duration};
2020-03-30 18:52:33 +00:00
fn main() {
// This app runs once
App::new()
.add_plugins(MinimalPlugins.set(ScheduleRunnerPlugin::run_once()))
.add_systems(Update, hello_world_system)
2020-03-30 18:52:33 +00:00
.run();
// This app loops forever at 60 fps
App::new()
.add_plugins(
MinimalPlugins.set(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
1.0 / 60.0,
))),
)
.add_systems(Update, counter)
2020-03-30 18:52:33 +00:00
.run();
}
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
fn counter(mut state: Local<CounterState>) {
if state.count % 60 == 0 {
println!("{}", state.count);
}
state.count += 1;
}
#[derive(Default)]
struct CounterState {
count: u32,
}