bevy/examples/app/without_winit.rs
Carter Anderson aefe1f0739
Schedule-First: the new and improved add_systems (#8079)
Co-authored-by: Mike <mike.hsu@gmail.com>
2023-03-18 01:45:34 +00:00

15 lines
379 B
Rust

//! Create an application without winit (runs single time, no event loop).
use bevy::prelude::*;
use bevy::winit::WinitPlugin;
fn main() {
App::new()
.add_plugins(DefaultPlugins.build().disable::<WinitPlugin>())
.add_systems(Update, setup_system)
.run();
}
fn setup_system(mut commands: Commands) {
commands.spawn(Camera3dBundle::default());
}