Add Pitch/Yaw calculation with Vector
Dieser Commit ist enthalten in:
Ursprung
582aeea840
Commit
b800bdad29
@ -9,6 +9,7 @@ import org.bukkit.World;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.bukkit.configuration.file.FileConfiguration;
|
||||
import org.bukkit.configuration.file.YamlConfiguration;
|
||||
import org.bukkit.util.Vector;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.*;
|
||||
@ -250,10 +251,10 @@ public class Config {
|
||||
TeamRedPasteZ = TeamBluePasteZ + TeamBluetoReddistanceZ;
|
||||
|
||||
World world = Bukkit.getWorlds().get(0);
|
||||
double yaw = Math.toDegrees(Math.atan2(TeamBluetoReddistanceZ, TeamBluetoReddistanceX) + Math.PI / 2);
|
||||
double pitch = Math.toDegrees(Math.atan2(Math.sqrt(TeamBluetoReddistanceZ * TeamBluetoReddistanceZ + TeamBluetoReddistanceX * TeamBluetoReddistanceX), TeamBluetoReddistanceY));
|
||||
double yawInverted = ((yaw + 180) * 180) / 180;
|
||||
double pitchInverted = ((90 - pitch) * 180) / 180;
|
||||
//double yaw = Math.toDegrees(Math.atan2(TeamBluetoReddistanceZ, TeamBluetoReddistanceX) + Math.PI / 2);
|
||||
//double pitch = Math.toDegrees(Math.atan2(Math.sqrt(TeamBluetoReddistanceZ * TeamBluetoReddistanceZ + TeamBluetoReddistanceX * TeamBluetoReddistanceX), TeamBluetoReddistanceY));
|
||||
//double yawInverted = yaw + 180;
|
||||
//double pitchInverted = ((90 - pitch) * 180) / 180;
|
||||
|
||||
TeamBlueSpawn = new Location(world,
|
||||
TeamBluePasteX + 0.5 + teamBlueSpawnOffsetX,
|
||||
@ -265,6 +266,12 @@ public class Config {
|
||||
TeamRedCornerY + 0.5 + teamBlueSpawnOffsetY,
|
||||
TeamRedPasteZ + 0.5 - teamBlueSpawnOffsetZ);
|
||||
|
||||
Vector v1 = TeamBlueSpawn.toVector().subtract(TeamRedSpawn.toVector());
|
||||
double pitch = v1.angle(v1.clone().setY(0));
|
||||
double yaw = v1.clone().setY(0).angle(new Vector(1, 0, 0));
|
||||
double pitchInverted = pitch * -1;
|
||||
double yawInverted = yaw + 180;
|
||||
|
||||
TeamBlueSpawn.setYaw((float) yawInverted);
|
||||
TeamBlueSpawn.setPitch((float) pitchInverted);
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren