@tsparticles/updater-orbit
Version:
tsParticles particles orbit updater
19 lines (18 loc) • 644 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.OrbitType = void 0;
var OrbitType;
(function (OrbitType) {
OrbitType["front"] = "front";
OrbitType["back"] = "back";
})(OrbitType || (exports.OrbitType = OrbitType = {}));
});