UNPKG

805 BJavaScriptView Raw
1import { loadSlim } from "./slim";
2import { loadExternalTrailInteraction } from "./Interactions/External/Trail";
3import { loadTiltUpdater } from "./Updaters/Tilt";
4import { loadWobbleUpdater } from "./Updaters/Wobble";
5import { loadAbsorbersPlugin } from "./Plugins/Absorbers/plugin";
6import { loadEmittersPlugin } from "./Plugins/Emitters/plugin";
7import { loadPolygonMaskPlugin } from "./Plugins/PolygonMask/plugin";
8import { loadRollUpdater } from "./Updaters/Roll";
9export function loadFull(tsParticles) {
10 loadSlim(tsParticles);
11 loadExternalTrailInteraction(tsParticles);
12 loadRollUpdater(tsParticles);
13 loadTiltUpdater(tsParticles);
14 loadWobbleUpdater(tsParticles);
15 loadAbsorbersPlugin(tsParticles);
16 loadEmittersPlugin(tsParticles);
17 loadPolygonMaskPlugin(tsParticles);
18}