tsParticles additional arrow shape.
The CDN/Vanilla version JS has one required file in vanilla configuration:
Including the tsparticles.shape.arrow.min.js
file will export the function to load the shape:
loadArrowShape
Once the scripts are loaded you can set up tsParticles
and the shape like this:
(async () => {
await loadArrowShape(tsParticles);
await tsParticles.load({
id: "tsparticles",
options: {
/* options */
/* here you can use particles.shape.type: "arrow" */
},
});
})();
This package is compatible also with ES or CommonJS modules, firstly this needs to be installed, like this:
$ npm install tsparticles-shape-arrow
or
$ yarn add tsparticles-shape-arrow
Then you need to import it in the app, like this:
const { tsParticles } = require("tsparticles-engine");
const { loadArrowShape } = require("tsparticles-shape-arrow");
(async () => {
await loadArrowShape(tsParticles);
})();
or
import { tsParticles } from "tsparticles-engine";
import { loadArrowShape } from "tsparticles-shape-arrow";
(async () => {
await loadArrowShape(tsParticles);
})();