UNPKG

2.44 kBJavaScriptView Raw
1import { loadCircleShape } from "./Shapes/Circle";
2import { loadLifeUpdater } from "./Updaters/Life";
3import { loadExternalConnectInteraction } from "./Interactions/External/Connect";
4import { loadOpacityUpdater } from "./Updaters/Opacity";
5import { loadImageShape } from "./Shapes/Image";
6import { loadPolygonShape } from "./Shapes/Polygon";
7import { loadExternalBubbleInteraction } from "./Interactions/External/Bubble";
8import { loadExternalAttractInteraction } from "./Interactions/External/Attract";
9import { loadExternalGrabInteraction } from "./Interactions/External/Grab";
10import { loadStarShape } from "./Shapes/Star";
11import { loadParticlesAttractInteraction } from "./Interactions/Particles/Attract";
12import { loadSquareShape } from "./Shapes/Square";
13import { loadStrokeColorUpdater } from "./Updaters/StrokeColor";
14import { loadColorUpdater } from "./Updaters/Color";
15import { loadParticlesCollisionsInteraction } from "./Interactions/Particles/Collisions";
16import { loadAngleUpdater } from "./Updaters/Angle";
17import { loadOutModesUpdater } from "./Updaters/OutModes";
18import { loadExternalRepulseInteraction } from "./Interactions/External/Repulse";
19import { loadLineShape } from "./Shapes/Line";
20import { loadExternalBounceInteraction } from "./Interactions/External/Bounce";
21import { loadTextShape } from "./Shapes/Text";
22import { loadParticlesLinksInteraction } from "./Interactions/Particles/Links";
23import { loadSizeUpdater } from "./Updaters/Size";
24export function loadSlim(tsParticles) {
25 loadExternalAttractInteraction(tsParticles);
26 loadExternalBounceInteraction(tsParticles);
27 loadExternalBubbleInteraction(tsParticles);
28 loadExternalConnectInteraction(tsParticles);
29 loadExternalGrabInteraction(tsParticles);
30 loadExternalRepulseInteraction(tsParticles);
31 loadParticlesAttractInteraction(tsParticles);
32 loadParticlesCollisionsInteraction(tsParticles);
33 loadParticlesLinksInteraction(tsParticles);
34 loadCircleShape(tsParticles);
35 loadImageShape(tsParticles);
36 loadLineShape(tsParticles);
37 loadPolygonShape(tsParticles);
38 loadSquareShape(tsParticles);
39 loadStarShape(tsParticles);
40 loadTextShape(tsParticles);
41 loadLifeUpdater(tsParticles);
42 loadOpacityUpdater(tsParticles);
43 loadSizeUpdater(tsParticles);
44 loadAngleUpdater(tsParticles);
45 loadColorUpdater(tsParticles);
46 loadStrokeColorUpdater(tsParticles);
47 loadOutModesUpdater(tsParticles);
48}