@tsparticles/plugin-rgb-color
Version:
tsParticles RGB color plugin
9 lines (8 loc) • 371 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.loadRgbColorPlugin = loadRgbColorPlugin;
const RgbColorManager_js_1 = require("./RgbColorManager.js");
async function loadRgbColorPlugin(engine, refresh = true) {
engine.checkVersion("3.9.1");
await engine.addColorManager(new RgbColorManager_js_1.RgbColorManager(), refresh);
}