@tsparticles/path-polygon
Version:
tsParticles polygon path
11 lines (10 loc) • 492 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.polygonPathName = void 0;
exports.loadPolygonPath = loadPolygonPath;
const PolygonPathGenerator_js_1 = require("./PolygonPathGenerator.js");
exports.polygonPathName = "polygonPathGenerator";
async function loadPolygonPath(engine, refresh = true) {
engine.checkVersion("3.9.1");
await engine.addPathGenerator(exports.polygonPathName, new PolygonPathGenerator_js_1.PolygonPathGenerator(), refresh);
}