ScreenCapture.StereoScreenCaptureMode
Enumeration specifying the eye texture to capture when using ScreenCapture.CaptureScreenshot and when stereo rendering is enabled.
Read time 1 minuteLast updated 4 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.ScreenCaptureModule
public enum ScreenCapture.StereoScreenCaptureMode
Remarks
The CaptureScreenshot method will default to StereoScreenCaptureMode.LeftEye. When captured in stereo mode, the resolution of the screenshot will be the size of the game window on the main display.
Fields
Value | Description |
|---|---|
| BothEyes | Both the left and right eyes are captured and composited into one image. |
| LeftEye | The Left Eye is captured. This is the default setting for the CaptureScreenshot method. |
| MotionVectors | Both the left and right eyes are captured and composited into one image, showing the motion vectors. |
| RightEye | The Right Eye is captured. |