public static float AngleRad(Vec2 from, Vec3 to) { return(UMath.Acos(UMath.Clamp(Vec2.Dot(from.normalized, to.normalized), -1f, 1f))); }