interface IParticlesInteractor {
    loadOptions?: ((options, ...sources) => void);
    loadParticlesOptions?: ((options, ...sources) => void);
    type: InteractorType;
    clear(particle, delta): void;
    init(): void;
    interact(particle, delta): void;
    isEnabled(particle): boolean;
    reset(particle): void;
}

Type Parameters

Hierarchy

Implemented by

Properties

loadOptions?: ((options, ...sources) => void)

Type declaration

loadParticlesOptions?: ((options, ...sources) => void)

Type declaration

Methods