Shooting and big tank fix

This commit is contained in:
Marco 2025-06-20 15:39:19 +02:00
commit 0a6e89faed
26 changed files with 797 additions and 9 deletions

View file

@ -8,4 +8,9 @@ public static class VectorExtensions
{
return new Vector2(original.X, original.Z);
}
public static Vector3 ToVector3(this Vector2 original, float height = 0)
{
return new Vector3(original.X, height, original.Y);
}
}