Illutions Engine API - v0.26.0
    Preparing search index...

    Interface InfoBoxCfg

    Defines the built-in engine infobox settings used to display FPS, CPU/frame timing and renderer.info values.

    interface InfoBoxCfg {
        calls: boolean;
        cpu: boolean;
        enable: boolean;
        fps: boolean;
        frame: boolean;
        geometries: boolean;
        lines: boolean;
        logsPerSecond: number;
        points: boolean;
        programs: boolean;
        textures: boolean;
        triangles: boolean;
    }
    Index
    calls: boolean

    Shows renderer.info.render.calls.

    true
    
    cpu: boolean

    Shows the measured CPU/update time in milliseconds.

    true
    
    enable: boolean

    Enables or disables infobox data collection.

    false
    
    fps: boolean

    Shows the FPS value.

    true
    
    frame: boolean

    Shows the frame time in milliseconds.

    true
    
    geometries: boolean

    Shows renderer.info.memory.geometries.

    true
    
    lines: boolean

    Shows renderer.info.render.lines.

    true
    
    logsPerSecond: number

    Refresh rate of the displayed values.

    10
    
    points: boolean

    Shows renderer.info.render.points.

    true
    
    programs: boolean

    Shows the number of compiled WebGL programs from renderer.info.programs.

    true
    
    textures: boolean

    Shows renderer.info.memory.textures.

    true
    
    triangles: boolean

    Shows renderer.info.render.triangles.

    true