UNPKG

tsparticles

Version:

Porting of the abandoned Vincent Garreau's particles.js, converted in TypeScript. Added many new cool features and various bug fixes.

12 lines (11 loc) 267 B
export class Presets { static getPreset(preset) { return this.presets[preset]; } static addPreset(presetKey, options) { if (!this.presets[presetKey]) { this.presets[presetKey] = options; } } } Presets.presets = {};