Interface RenderTargetBlock

interface RenderTargetBlock {
    div: HTMLDivElement;
    material?: ShaderMaterial;
    name: string;
    originalColorSpace: boolean;
    target: ValOrFunc<
        undefined
        | null
        | IRenderTarget
        | { texture?: ValOrArr<ITexture> },
    >;
    transparent: boolean;
    visible: boolean;
}

Properties

div: HTMLDivElement
material?: ShaderMaterial
name: string
originalColorSpace: boolean
target: ValOrFunc<
    undefined
    | null
    | IRenderTarget
    | { texture?: ValOrArr<ITexture> },
>
transparent: boolean
visible: boolean