Version: 2017.3
Experimental: this API is experimental and might be changed or removed in the future.

ScriptableRenderContext.StartMultiEye

매뉴얼로 전환
public void StartMultiEye (Camera camera);

파라미터

camera Camera to enable stereo rendering on.

설명

Fine-grain control to begin stereo rendering on the scriptable render context.

Activates stereo rendering on the ScriptableRenderContext and camera. When used in conjunction with StopMultiEye, these APIs provide fine-grained control of which draw calls are multi-plexed for stereo purposes. For example, you would wrap your opaque and transparent passes with StartMultiEye and StopMultiEye, but you could exclude your shadow rendering.

Note that only draws are affected by this API. Compute work is not automatically adjusted for stereo, therefore, per-eye compute work must be manually generated.

See Also: StopMultiEye, SetupCameraProperties, StereoEndRender, CullResults.GetCullingParameters.