bevy-santa/src/camera.rs
Crizomb 27da890604
All checks were successful
Build Bevy Game (Linux) / build (push) Successful in 19m17s
very simple game base
2025-12-25 20:38:52 +01:00

5 lines
121 B
Rust

use bevy::{prelude::*, render::renderer};
pub fn spawn_camera(mut commands: Commands) {
commands.spawn(Camera2d);
}