Version: 5.5 (switch to 5.6b)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

StereoRenderingPath

enumeration

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

Description

Enum used to specify what stereo rendering path to use.

Variables

MultiPassThe scene graph is traversed twice, rendering one eye at a time. This is the slowest path and should only be used for reference.
SinglePassThe scene graph is traversed only once and two draw calls will be issued for each render node. The main render target has to be a double wide render target. This is considerable faster than MultiPass mode.
InstancingThe scene graph is traversed only once and there will be only one draw call issued for each render node. The main render target has to be an array render target. This is an optimization of the StereoRenderingPath.SinglePass mode. Special hardware support is required for this to run.