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