@tsparticles/path-curves
Version:
tsParticles curves path
11 lines (10 loc) • 481 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.curvesPathName = void 0;
exports.loadCurvesPath = loadCurvesPath;
const CurvesPathGenerator_js_1 = require("./CurvesPathGenerator.js");
exports.curvesPathName = "curvesPathGenerator";
async function loadCurvesPath(engine, refresh = true) {
engine.checkVersion("3.9.1");
await engine.addPathGenerator(exports.curvesPathName, new CurvesPathGenerator_js_1.CurvesPathGenerator(), refresh);
}