Progress notification for a rendering phase.
Signature
export interface RenderProgress {
phase: RenderPhase;
completed: number;
total: number;
}Properties
| Property | Type | Required | Read only | Default | Description |
|---|---|---|---|---|---|
phase | RenderPhase | Yes | No | None | Phase producing this notification. |
completed | number | Yes | No | None | Completed work units within the phase. |
total | number | Yes | No | None | Total work units within the phase. |