asset loader

added rapier
This commit is contained in:
2024-04-14 22:40:24 -04:00
parent 27193adf15
commit 70a5d64d16
12 changed files with 466 additions and 115 deletions

View File

@@ -1,3 +1,8 @@
pub mod heightmap;
pub mod hex_utils;
pub mod mesh_generator;
pub mod tile_manager;
pub mod prelude {
use crate::hex_utils::HexCoord;
use bevy::math::{IVec2, UVec2};
@@ -65,8 +70,3 @@ pub mod prelude {
pub const ATTRIBUTE_TEXTURE_INDEX: MeshVertexAttribute =
MeshVertexAttribute::new("TextureIndex", 988540917, VertexFormat::Uint32);
}
pub mod heightmap;
pub mod hex_utils;
pub mod mesh_generator;
pub mod tile_manager;