switch to noise lib that works on arm neon (apple)

This commit is contained in:
2024-09-20 22:07:40 -04:00
parent cb422ff5dd
commit e66c75ca44
24 changed files with 2313 additions and 114 deletions
+2 -1
View File
@@ -3,6 +3,7 @@ mod camera;
mod component;
mod handle_input;
mod input;
// mod render_vulkan;
pub mod render;
mod rsc;
mod state;
@@ -66,7 +67,7 @@ impl Client<'_> {
.expect("Failed to create window"),
);
let renderer = Renderer::spawn(window.clone());
let renderer = Renderer::new(window.clone());
world.insert_resource(RenderCommands(Vec::new()));
let state = ClientState::new();