UNPKG

191 BJavaScriptView Raw
1import { WobbleUpdater } from "./WobbleUpdater";
2export function loadWobbleUpdater(tsParticles) {
3 tsParticles.addParticleUpdater("wobble", (container) => new WobbleUpdater(container));
4}