Interface CumulativeStatsResponse

The structure of a CumulativeStats response from OpenVR2WS.

interface CumulativeStatsResponse {
    Data: {
        FramesDropped: number;
        FramesLoading: number;
        FramesPresented: number;
        FramesReprojected: number;
        FramesTimedOut: number;
        SystemTimeMs: number;
    };
    Key: CumulativeStats;
    Message: string;
    Nonce?: string;
    Type: Command;
}

Hierarchy (view full)

Properties

Data: {
    FramesDropped: number;
    FramesLoading: number;
    FramesPresented: number;
    FramesReprojected: number;
    FramesTimedOut: number;
    SystemTimeMs: number;
}

Type declaration

  • FramesDropped: number
  • FramesLoading: number
  • FramesPresented: number
  • FramesReprojected: number
  • FramesTimedOut: number
  • SystemTimeMs: number
Message: string
Nonce?: string
Type: Command