From 99dfc7b3c9f5721dae6a016a1171b451e97a4d7c Mon Sep 17 00:00:00 2001 From: HampusM Date: Fri, 17 Jan 2025 15:33:58 +0100 Subject: fix(engine): correct Vec3 direction constants --- engine/src/data_types/vector.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/src') diff --git a/engine/src/data_types/vector.rs b/engine/src/data_types/vector.rs index 6746b76..8073cdf 100644 --- a/engine/src/data_types/vector.rs +++ b/engine/src/data_types/vector.rs @@ -85,9 +85,9 @@ pub struct Vec3 impl Vec3 { - pub const BACK: Self = Self { x: 0.0, y: 1.0, z: -1.0 }; + pub const BACK: Self = Self { x: 0.0, y: 0.0, z: -1.0 }; pub const DOWN: Self = Self { x: 0.0, y: -1.0, z: 0.0 }; - pub const FRONT: Self = Self { x: 0.0, y: 1.0, z: 1.0 }; + pub const FRONT: Self = Self { x: 0.0, y: 0.0, z: 1.0 }; pub const LEFT: Self = Self { x: -1.0, y: 0.0, z: 0.0 }; pub const RIGHT: Self = Self { x: 1.0, y: 0.0, z: 0.0 }; pub const UP: Self = Self { x: 0.0, y: 1.0, z: 0.0 }; -- cgit v1.2.3-18-g5258