diff --git a/kubi/src/world/mesh/builder.rs b/kubi/src/world/mesh/builder.rs index 88cddf5..708d5f3 100644 --- a/kubi/src/world/mesh/builder.rs +++ b/kubi/src/world/mesh/builder.rs @@ -79,10 +79,10 @@ const CROSS_FACE_INDICES: [u32; 12] = [ const UV_COORDS: [[f32; 2]; 4] = [ - [0., 0.], [0., 1.], - [1., 0.], + [0., 0.], [1., 1.], + [1., 0.], ]; #[derive(Default)]