The data structure for a particle system. Describes the particle behavior and appearance.

interface System {
    color?: Expression[];
    mtxLocal?: Transformation[];
    mtxWorld?: Transformation[];
    variableNames?: string[];
    variables?: Expression[];
}

Properties

color?: Expression[]
mtxLocal?: Transformation[]
mtxWorld?: Transformation[]
variableNames?: string[]
variables?: Expression[]