public static Matrix4x4 LookAt(Vector3 from, Vector3 to, Vector3 up) { Matrix4x4 result; Matrix4x4.INTERNAL_CALL_LookAt(ref from, ref to, ref up, out result); return(result); }