Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface ParticleGeneratorValueOptions

    interface ParticleGeneratorValueOptions {
        curve?: ParticleGeneratorCurvePoint[];
        fn?: ParticleGeneratorValueFunction;
        max?: number;
        min?: number;
        step?: boolean;
    }
    Index

    Properties

    Properties

    Optional curve over normalized lifetime. Points must start at time 0, end at time 1, and use strictly increasing times.

    Complete custom value function.

    max?: number

    Maximum base value sampled once per particle.

    min?: number

    Minimum base value sampled once per particle.

    step?: boolean

    Evaluate curve values in discrete steps instead of interpolation.