Pixel Data JS - v0.28.0
    Preparing search index...

    Type Alias BlendColor32

    A function that defines how to combine a source color with a destination color.

    type BlendColor32 = {
        isOverwrite?: true;
        (src: Color32, dst: Color32): Color32;
    }
    • Parameters

      • src: Color32

        The incoming color (source).

      • dst: Color32

        The existing color in the buffer (destination).

      Returns Color32

      The resulting 32-bit color to be written to the buffer.

    Index

    Properties

    Properties

    isOverwrite?: true