@tsparticles/plugin-emitters
Version:
tsParticles emitters plugin
17 lines (16 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmitterShapeBase = void 0;
class EmitterShapeBase {
constructor(position, size, fill, options) {
this.position = position;
this.size = size;
this.fill = fill;
this.options = options;
}
resize(position, size) {
this.position = position;
this.size = size;
}
}
exports.EmitterShapeBase = EmitterShapeBase;