Interface RendererInstanceEntry

Renderer entry that provides a pre-created instance.

interface RendererInstanceEntry {
    id: string;
    instance: LayerRenderer<never>;
    active?: boolean;
}

Properties

Properties

id: string

Unique identifier for this renderer within the layer.

instance: LayerRenderer<never>

The renderer instance to register.

active?: boolean

Whether the renderer is initially active in the render queue. Default: true.