UNPKG

@tsparticles/plugin-emitters

Version:

tsParticles emitters plugin

15 lines (14 loc) 389 B
import { PixelMode, isNull, loadProperty } from "@tsparticles/engine"; export class EmitterSize { height = 0; mode = PixelMode.percent; width = 0; load(data) { if (isNull(data)) { return; } loadProperty(this, "mode", data.mode); loadProperty(this, "height", data.height); loadProperty(this, "width", data.width); } }