bevy/examples/app/headless.rs

32 lines
868 B
Rust
Raw Normal View History

2020-05-01 13:12:47 -07:00
use bevy::prelude::*;
2020-03-30 11:52:33 -07:00
use std::time::Duration;
// This example disables the default plugins by not registering them during setup.
// 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 = "0.1.0", default-features = false, features = ["headless"] }
2020-03-30 11:52:33 -07:00
fn main() {
// this app runs once
2020-03-30 11:52:33 -07:00
App::build()
2020-05-01 13:12:47 -07:00
.add_plugin(ScheduleRunnerPlugin::run_once())
.add_system(hello_world_system.system())
2020-03-30 11:52:33 -07:00
.run();
// this app loops forever at 60 fps
2020-03-30 11:52:33 -07:00
App::build()
2020-05-01 13:55:07 -07:00
.add_plugin(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
1.0 / 60.0,
)))
.add_system(some_other_system.system())
2020-03-30 11:52:33 -07:00
.run();
}
fn hello_world_system() {
2020-04-30 10:42:22 -07:00
println!("hello world");
2020-03-30 11:52:33 -07:00
}
2020-05-01 13:55:07 -07:00
fn some_other_system() {}