From 78e87192d618443ddc3ef7425db9975dbbba2d98 Mon Sep 17 00:00:00 2001 From: Rhys Lloyd Date: Wed, 17 Dec 2025 13:16:12 -0800 Subject: [PATCH] disable culling --- engine/graphics/src/graphics.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/graphics/src/graphics.rs b/engine/graphics/src/graphics.rs index 102b5369..d0c5915e 100644 --- a/engine/graphics/src/graphics.rs +++ b/engine/graphics/src/graphics.rs @@ -1033,7 +1033,7 @@ impl GraphicsState{ primitive:wgpu::PrimitiveState{ topology:wgpu::PrimitiveTopology::TriangleList, front_face:wgpu::FrontFace::Cw, - cull_mode:Some(wgpu::Face::Front), + cull_mode:None, ..Default::default() }, depth_stencil:Some(wgpu::DepthStencilState{