interface BehaviorPlugin {
    constructor: Constructable<Behavior>;
    loadJSON: (json: any, particleSystem: IParticleSystem) => Behavior;
    params: ParameterPair[];
    type: string;
}

Properties

constructor: Constructable<Behavior>
loadJSON: (json: any, particleSystem: IParticleSystem) => Behavior
params: ParameterPair[]
type: string