@tsparticles/plugin-polygon-mask
Version:
tsParticles polygon mask plugin
21 lines (20 loc) • 788 B
JavaScript
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PolygonMaskType = void 0;
var PolygonMaskType;
(function (PolygonMaskType) {
PolygonMaskType["inline"] = "inline";
PolygonMaskType["inside"] = "inside";
PolygonMaskType["outside"] = "outside";
PolygonMaskType["none"] = "none";
})(PolygonMaskType || (exports.PolygonMaskType = PolygonMaskType = {}));
});