Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


XRDisplaySubsystem.ReprojectionMode

The kind of reprojection the app requests to stabilize rendering relative to the user's head motion.
Read time 1 minuteLast updated 13 days ago

Definition

public enum XRDisplaySubsystem.ReprojectionMode

Fields

Value

Description

NoneDoes not stabilize the image for the user's head motion and instead fixes it in the display. Note that this is only comfortable for users when you use it sparingly, for example when the only visible content is a small cursor.
OrientationOnlyStabilizes the image only for changes to the user's head orientation, ignores changes in position. This is best for body-locked content that you want to move with the user as they walk around, such as a 360-degree video.
PositionAndOrientationStabilizes the image for changes to both the user's head position and orientation. This is best for world-locked content that you want to remain stationary as the user walks around.
UnspecifiedDoes not specify the type of reprojection mode to use.