Version: 2021.2
LanguageEnglish
  • C#

Camera.nonJitteredProjectionMatrix

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Switch to Manual
public Matrix4x4 nonJitteredProjectionMatrix;

Description

Get or set the raw projection matrix with no camera offset (no jittering).

For many temporal image effects, the camera that is currently rendering needs to be slightly offset from the default projection (that is, the camera is ‘jittered’). Use this function to specify the default (non-jittered) perspective matrix that was used before the offset was applied. It is posible to configure whether the jittered or non jittered matrix should be used for objects rendered after the opaque objects pass (transparent objects for example), see Camera.useJitteredProjectionMatrixForTransparentRendering.

If you use motion vectors and camera jittering together, use this property to keep the motion vectors stable between frames.

Set the jittered matrix using Camera.projectionMatrix.