ecspresso
    Preparing search index...

    Interface ParticleEffectConfig

    Frozen, fully-resolved particle effect config. Output of defineParticleEffect.

    interface ParticleEffectConfig {
        angle: ParticleValue;
        blendMode: ParticleBlendMode;
        burstCount: number;
        duration: number;
        emissionRadius: number;
        emissionShape: EmissionShape;
        endAlpha: ParticleValue;
        endSize: ParticleValue;
        endTint: number;
        gravity: { x: number; y: number };
        lifetime: ParticleValue;
        maxParticles: number;
        rotationSpeed: ParticleValue;
        spawnRate: number;
        speed: ParticleValue;
        startAlpha: ParticleValue;
        startRotation: ParticleValue;
        startSize: ParticleValue;
        startTint: number;
        texture: unknown;
        worldSpace: boolean;
    }
    Index

    Properties

    burstCount: number
    duration: number
    emissionRadius: number
    emissionShape: EmissionShape
    endAlpha: ParticleValue
    endSize: ParticleValue
    endTint: number
    gravity: { x: number; y: number }
    lifetime: ParticleValue
    maxParticles: number
    rotationSpeed: ParticleValue
    spawnRate: number
    startAlpha: ParticleValue
    startRotation: ParticleValue
    startSize: ParticleValue
    startTint: number
    texture: unknown
    worldSpace: boolean