using System.Numerics; namespace KeepersCompound.LGS; public static class Utils { public static Godot.Vector3 ToGodotVec3(this Vector3 vec, float inverseScale) { return new Godot.Vector3(vec.Y, vec.Z, vec.X) / inverseScale; } }