From d1820d9e5b2b964bfb5bed226781f66b673bb608 Mon Sep 17 00:00:00 2001 From: jojo Date: Sat, 23 May 2020 12:42:11 +0200 Subject: [PATCH] Add Pitch/Yaw Vector Fix --- FightSystem_API/src/de/steamwar/fightsystem/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FightSystem_API/src/de/steamwar/fightsystem/Config.java b/FightSystem_API/src/de/steamwar/fightsystem/Config.java index 6028490..0b1e83f 100644 --- a/FightSystem_API/src/de/steamwar/fightsystem/Config.java +++ b/FightSystem_API/src/de/steamwar/fightsystem/Config.java @@ -268,7 +268,7 @@ public class Config { Vector v1 = TeamBlueSpawn.toVector().subtract(TeamRedSpawn.toVector()); double pitch = Math.toDegrees(v1.angle(v1.clone().setY(0))); - double yaw = Math.toDegrees(v1.clone().setY(0).angle(new Vector(1, 0, 0))); + double yaw = Math.toDegrees(v1.clone().setY(0).angle(new Vector(0, 0, 1))); double pitchInverted = pitch * -1; double yawInverted = yaw + 180;