@lightningjs/renderer
    Preparing search index...

    Interface TextureMap

    Augmentable map of texture class types

    This interface can be augmented by other modules/apps to add additional texture types. The ones included directly here are the ones that are included in the core library.

    interface TextureMap {
        ColorTexture: typeof ColorTexture;
        ImageTexture: typeof ImageTexture;
        NoiseTexture: typeof NoiseTexture;
        RenderTexture: typeof RenderTexture;
        SubTexture: typeof SubTexture;
    }
    Index

    Properties

    ColorTexture: typeof ColorTexture
    ImageTexture: typeof ImageTexture
    NoiseTexture: typeof NoiseTexture
    RenderTexture: typeof RenderTexture
    SubTexture: typeof SubTexture