INTERNAL_CALL_SetStereoViewMatrices() private method

private INTERNAL_CALL_SetStereoViewMatrices ( Camera self, Matrix4x4 &leftMatrix, Matrix4x4 &rightMatrix ) : void
self Camera
leftMatrix Matrix4x4
rightMatrix Matrix4x4
return void
コード例 #1
0
 /// <summary>
 ///   <para>Define the view matrices for both stereo eye. Only work in 3D flat panel display.</para>
 /// </summary>
 /// <param name="leftMatrix">View matrix for the stereo left eye.</param>
 /// <param name="rightMatrix">View matrix for the stereo right eye.</param>
 public void SetStereoViewMatrices(Matrix4x4 leftMatrix, Matrix4x4 rightMatrix)
 {
     Camera.INTERNAL_CALL_SetStereoViewMatrices(this, ref leftMatrix, ref rightMatrix);
 }