UNPKG

@tsparticles/updater-color

Version:

tsParticles particles color updater

8 lines (7 loc) 297 B
import { ColorUpdater } from "./ColorUpdater.js"; export async function loadColorUpdater(engine, refresh = true) { engine.checkVersion("3.8.1"); await engine.addParticleUpdater("color", container => { return Promise.resolve(new ColorUpdater(container, engine)); }, refresh); }