Represents a viewing window for VR content. The current viewing direction is restricted to the set viewing window.

interface ViewingWindow {
    maxPitch: number;
    maxYaw: number;
    minPitch: number;
    minYaw: number;
}

Properties

maxPitch: number

Upper bound for pitch.

maxYaw: number

Upper bound for yaw.

minPitch: number

Lower bound for pitch.

minYaw: number

Lower bound for yaw.