From 59cdd84fc5e0c1eff43622d15254c8e22bddf4ee Mon Sep 17 00:00:00 2001 From: griffi-gh Date: Mon, 23 Jan 2023 03:12:23 +0100 Subject: [PATCH] Use correct culling? --- src/world/render.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world/render.rs b/src/world/render.rs index 23fbbda..56499db 100644 --- a/src/world/render.rs +++ b/src/world/render.rs @@ -56,7 +56,7 @@ pub fn draw_world( ..Default::default() }, polygon_mode: PolygonMode::Fill, //Change to Line for wireframe - backface_culling: BackfaceCullingMode::CullCounterClockwise, + backface_culling: BackfaceCullingMode::CullClockwise, ..Default::default() }; let texture_sampler = Sampler(&texture.0, SamplerBehavior {