1
0
mirror of https://github.com/oliverbooth/VpSharp synced 2024-11-22 19:38:47 +00:00

%360 for Coordinates.Yaw

This commit is contained in:
Oliver Booth 2022-12-08 16:35:50 +00:00
parent 90211f1647
commit b1b9d59cfd
No known key found for this signature in database
GPG Key ID: 32A00B35503AF634

View File

@ -70,7 +70,7 @@ public readonly partial struct Coordinates : IEquatable<Coordinates>, IFormattab
X = x;
Y = y;
Z = z;
Yaw = yaw;
Yaw = yaw % 360.0;
IsRelative = isRelative;
}