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