AssemblyCSharp.VectorEx.GetYaw C# (CSharp) Method

GetYaw() public static method

public static GetYaw ( this v ) : float
v this
return float
        public static float GetYaw(this Vector3 v)
        {
            return (Mathf.Atan2(v.x, v.z));
        }