Represents a registered diagnostics view that can receive stat data to display in the live diagnostics panel in the debugger.
export class DiagnosticsView { private constructor(); pushStats(stats: DiagnosticsStat[]): void;} Copy
export class DiagnosticsView { private constructor(); pushStats(stats: DiagnosticsStat[]): void;}
Private
An array of DiagnosticsStat objects containing the stat names and values to display.
Pushes a new set of stats to this diagnostics view to be displayed.
This function can throw errors.
DiagnosticsError
This function can't be called in early-execution mode.
Represents a registered diagnostics view that can receive stat data to display in the live diagnostics panel in the debugger.
Source