From 60fe2fc29440d7ac88f70c8051bfbf4b13d664bb Mon Sep 17 00:00:00 2001 From: Serkyo Date: Thu, 16 Jul 2026 00:05:30 +0200 Subject: [PATCH] feat(client): upload origin chunk via renderer insert_mesh --- crates/client/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/client/src/main.rs b/crates/client/src/main.rs index 7c40862..0c9c9d3 100644 --- a/crates/client/src/main.rs +++ b/crates/client/src/main.rs @@ -178,7 +178,7 @@ impl ApplicationHandler for App { self.renderer .as_mut() .expect("Renderer initialized") - .update_mesh(&vertices, &indices) + .insert_mesh((0, 0, 0), &vertices, &indices, [0.0, 0.0, 0.0]) .expect("Failed to upload terrain to GPU"); // Kick off a background connect + handshake to the local server.