@tsparticles/path-svg
Version:
tsParticles svg path
11 lines (10 loc) • 448 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.svgPathName = void 0;
exports.loadSVGPath = loadSVGPath;
const SVGPathGenerator_js_1 = require("./SVGPathGenerator.js");
exports.svgPathName = "svgPathGenerator";
async function loadSVGPath(engine, refresh = true) {
engine.checkVersion("3.9.1");
await engine.addPathGenerator(exports.svgPathName, new SVGPathGenerator_js_1.SVGPathGenerator(), refresh);
}