@tsparticles/updater-orbit
Version:
tsParticles particles orbit updater
18 lines (17 loc) • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.OrbitRotation = void 0;
const engine_1 = require("@tsparticles/engine");
class OrbitRotation extends engine_1.ValueWithRandom {
constructor() {
super();
this.value = 45;
}
load(data) {
if ((0, engine_1.isNull)(data)) {
return;
}
super.load(data);
}
}
exports.OrbitRotation = OrbitRotation;