UNPKG

@tsparticles/plugin-emitters

Version:

tsParticles emitters plugin

13 lines (12 loc) 325 B
import { isNull, loadRangeProperty, } from "@tsparticles/engine"; export class EmitterRate { delay = 0.1; quantity = 1; load(data) { if (isNull(data)) { return; } loadRangeProperty(this, "quantity", data.quantity); loadRangeProperty(this, "delay", data.delay); } }