rendering a spherical player!!

This commit is contained in:
TudbuT 2024-11-23 01:40:50 +01:00
parent 5b8bd5c525
commit e65f8b26ca
No known key found for this signature in database
GPG key ID: B3CF345217F202D3
4 changed files with 31 additions and 4 deletions

View file

@ -3,10 +3,12 @@ use bevy_rapier2d::prelude::*;
use player::player_plugin;
use scene::scene_plugin;
use crate::AppState;
mod player;
mod scene;
mod set;
fn game_plugin(app: &mut App) {
pub fn game_plugin(app: &mut App) {
app.add_plugins((player_plugin, scene_plugin));
}