Interface XRSessionEvent

interface XRSessionEvent {
    defaultPrevented: boolean;
    machineType: "Pico" | "Oculus";
    session: XRSession;
    timeStamp: number;
    type: string;
    preventDefault(): void;
}

Hierarchy (view full)

Properties

defaultPrevented: boolean
machineType: "Pico" | "Oculus"
session: XRSession
timeStamp: number
type: string

Methods