simplify meshing

generate collision mesh
add physics
This commit is contained in:
2024-04-29 21:20:15 -04:00
parent c434b2eab0
commit 771c212798
6 changed files with 324 additions and 214 deletions

View File

@@ -1,3 +1,4 @@
use bevy::pbr::wireframe::WireframePlugin;
use bevy::prelude::*;
use bevy::render::texture::{ImageAddressMode, ImageFilterMode, ImageSamplerDescriptor};
use bevy::window::PresentMode;
@@ -32,6 +33,7 @@ fn main() {
},
}),
WorldInspectorPlugin::new(),
WireframePlugin,
PhosGamePlugin,
))
.run();