All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m17s
5 lines
121 B
Rust
5 lines
121 B
Rust
use bevy::{prelude::*, render::renderer};
|
|
|
|
pub fn spawn_camera(mut commands: Commands) {
|
|
commands.spawn(Camera2d);
|
|
}
|