Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


CopyStereoDeviceProjectionMatrixToNonJittered(StereoscopicEye)

Sets the non-jittered projection matrix, sourced from the VR SDK.
Read time 1 minuteLast updated 12 days ago

Definition

  • Type: Method
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public void CopyStereoDeviceProjectionMatrixToNonJittered(Camera.StereoscopicEye eye)

Parameters

Specifies the stereoscopic eye whose non-jittered projection matrix will be sourced from the VR SDK.

Remarks

With traditional rendering, the application is responsible for generating the non-jittered and jittered projection matrices. However, in VR rendering, the projection matrices are sourced from the VR SDK. Therefore, if the intention is to jitter the VR projection matrices, that would indicate the non-jittered projection matrices are the ones provided by the VR SDK. This API provides this functionality by copying the VR SDK projection matrices directly into the non-jittered stereo projection matrix set.
Use GetNonJitteredStereoProjectionMatrix to get the non-jittered stereo projection matrices.
Use Camera.SetStereoProjectionMatrix and Camera.GetStereoProjectionMatrix to set and get the jittered stereo projection matrices, respectively.
For descriptions of jittered projection rendering see: Camera.nonJitteredProjectionMatrix.