mirror of
https://github.com/ClassiCube/MCGalaxy.git
synced 2025-09-22 12:05:51 -04:00
fix Vec3F32 * operator being broken
This commit is contained in:
parent
0689e6fd9b
commit
d0f9c4279b
@ -215,7 +215,7 @@ namespace MCGalaxy.Maths
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Vec3F32 operator * (Vec3F32 a, float b) {
|
public static Vec3F32 operator * (Vec3F32 a, float b) {
|
||||||
return new Vec3F32(a.X * b, a.Y * b, a.Y * b);
|
return new Vec3F32(a.X * b, a.Y * b, a.Z * b);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Vec3F32 operator - (Vec3F32 a, Vec3F32 b) {
|
public static Vec3F32 operator - (Vec3F32 a, Vec3F32 b) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user