mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
31 lines
897 B
Rust
31 lines
897 B
Rust
use bevy::{app::ScheduleRunnerPlugin, prelude::*};
|
|
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.3", default-features = false, features = ["headless"] }
|
|
|
|
fn main() {
|
|
// this app runs once
|
|
App::build()
|
|
.add_plugin(ScheduleRunnerPlugin::run_once())
|
|
.add_system(hello_world_system.system())
|
|
.run();
|
|
|
|
// this app loops forever at 60 fps
|
|
App::build()
|
|
.add_plugin(ScheduleRunnerPlugin::run_loop(Duration::from_secs_f64(
|
|
1.0 / 60.0,
|
|
)))
|
|
.add_system(some_other_system.system())
|
|
.run();
|
|
}
|
|
|
|
fn hello_world_system() {
|
|
println!("hello world");
|
|
}
|
|
|
|
fn some_other_system() {}
|