pixi.js
    Preparing search index...

    Interface BaseGradientOptions

    Represents the style options for a linear gradient fill.

    interface BaseGradientOptions {
        colorStops?: { color: ColorSource; offset: number }[];
        textureSize?: number;
        textureSpace?: TextureSpace;
        type?: GradientType;
        wrapMode?: WRAP_MODE;
    }

    Hierarchy (View Summary)

    Index

    Properties

    colorStops?: { color: ColorSource; offset: number }[]

    Array of colors stops to use in the gradient

    textureSize?: number

    The size of the texture to use for the gradient - this is for advanced usage. The texture size does not need to match the size of the object being drawn. Due to GPU interpolation, gradient textures can be relatively small! Consider using a larger texture size if your gradient has a lot of very tight color steps

    textureSpace?: TextureSpace

    Whether coordinates are 'global' or 'local'

    The type of gradient

    wrapMode?: WRAP_MODE

    The wrap mode of the gradient. This can be 'clamp-to-edge' or 'repeat'.

    'clamp-to-edge'