Engine API Reference - v2.23.0-beta.4
    Preparing search index...

    Interface MiniStatsOptions

    interface MiniStatsOptions {
        cpu: MiniStatsProcessorOptions;
        cpuTimingMinSize?: number;
        gpu: MiniStatsProcessorOptions;
        gpuTimingMinSize?: number;
        sizes: MiniStatsSizeOptions[];
        startSizeIndex: number;
        stats: MiniStatsGraphOptions[];
        textRefreshRate: number;
        vramTimingMinSize?: number;
    }
    Index

    CPU graph options.

    cpuTimingMinSize?: number

    Minimum size index at which to show CPU sub-timing graphs (script, anim, physics, render). Defaults to 1.

    GPU graph options.

    gpuTimingMinSize?: number

    Minimum size index at which to show GPU pass timing graphs. Defaults to 1.

    Sizes of area to render individual graphs in and spacing between individual graphs.

    startSizeIndex: number

    Index into sizes array for initial setting.

    Array of options to render additional graphs based on stats collected into Application.stats.

    textRefreshRate: number

    Text update interval and averaging window in ms (500 in the default options). Each update shows the arithmetic mean and peak of the frame samples collected since the previous update, then starts a new window. Graph history samples every frame.

    vramTimingMinSize?: number

    Minimum size index at which to show VRAM subcategory graphs. Defaults to 1.