Hilo3d API - v2.0.0-alpha.4
    Preparing search index...

    Interface ParticleAdvancedSurfaceDefinition

    Shared controls for non-sprite particle surfaces.

    interface ParticleAdvancedSurfaceDefinition {
        alphaCutoff?: number;
        blend?: "alpha" | "additive" | "premultiplied-alpha";
        composition?: "scene";
        coverage?: ParticleSurfaceCoverage;
        depthTest?: boolean;
        depthWrite?: boolean;
        lighting?: ParticleLightingMode;
        renderOrder?: number;
        sort?: ParticleSortMode;
        texture?: Texture<unknown> | null;
    }

    Hierarchy (View Summary)

    Index
    alphaCutoff?: number
    blend?: "alpha" | "additive" | "premultiplied-alpha"
    composition?: "scene"

    P5 renders into linear scene color before Bloom; other policies fail at compile time.

    depthTest?: boolean
    depthWrite?: boolean
    renderOrder?: number
    texture?: Texture<unknown> | null