UNPKG

@tsparticles/plugin-emitters

Version:

tsParticles emitters plugin

13 lines (12 loc) 320 B
import { isNull, loadProperty } from "@tsparticles/engine"; export class EmitterShapeReplace { color = false; opacity = false; load(data) { if (isNull(data)) { return; } loadProperty(this, "color", data.color); loadProperty(this, "opacity", data.opacity); } }