ParticleMaterial blending options

ParticleBlendingOptions

2024.6.21

yisky

interface ParticleBlendingOptions {
    blendAlpha?: number;
    blendColor?: ColorRepresentation;
    blendDst?: BlendingDstFactor;
    blendDstAlpha?: number;
    blendEquation?: BlendingEquation;
    blendEquationAlpha?: BlendingEquation;
    blendSrc?:
        | 200
        | 201
        | 202
        | 203
        | 204
        | 205
        | 206
        | 207
        | 208
        | 209
        | 210
        | 211
        | 212
        | 213
        | 214;
    blendSrcAlpha?: number;
}

Properties

blendAlpha?: number

Represents the alpha value of the constant blend color.

ParticleBlendingOptions

blendColor?: ColorRepresentation

Represent the RGB values of the constant blend color.

ParticleBlendingOptions

blendDst?: BlendingDstFactor

Blending destination.

ParticleBlendingOptions

blendDstAlpha?: number

The tranparency of the .blendDst.

ParticleBlendingOptions

blendEquation?: BlendingEquation

Blending equation to use when applying blending.

ParticleBlendingOptions

blendEquationAlpha?: BlendingEquation

The tranparency of the .blendEquation.

ParticleBlendingOptions

blendSrc?:
    | 200
    | 201
    | 202
    | 203
    | 204
    | 205
    | 206
    | 207
    | 208
    | 209
    | 210
    | 211
    | 212
    | 213
    | 214

Blending source.

ParticleBlendingOptions

blendSrcAlpha?: number

The tranparency of the .blendSrc.

ParticleBlendingOptions