bevy/examples/wasm/headless_wasm.rs

35 lines
755 B
Rust
Raw Normal View History

use bevy::{
app::{ScheduleRunnerPlugin, ScheduleRunnerSettings},
2020-11-13 01:23:57 +00:00
log::LogPlugin,
prelude::*,
utils::Duration,
};
fn main() {
2021-04-11 20:13:07 +00:00
App::new()
.insert_resource(ScheduleRunnerSettings::run_loop(Duration::from_secs_f64(
1.0 / 60.0,
)))
.add_plugin(ScheduleRunnerPlugin::default())
2020-11-13 01:23:57 +00:00
.add_plugin(LogPlugin::default())
.add_startup_system(hello_world_system.system())
.add_system(counter.system())
.run();
}
fn hello_world_system() {
2020-11-13 01:23:57 +00:00
info!("hello wasm");
}
fn counter(mut state: Local<CounterState>) {
if state.count % 60 == 0 {
2020-11-13 01:23:57 +00:00
info!("counter system: {}", state.count);
}
state.count += 1;
}
#[derive(Default)]
struct CounterState {
count: u32,
}