UNPKG

@tsparticles/plugin-emitters-shape-canvas

Version:

tsParticles emitters shape canvas plugin

15 lines (14 loc) 299 B
import { isNull } from "@tsparticles/engine"; export class PixelsOptions { constructor() { this.offset = 4; } load(data) { if (isNull(data)) { return; } if (data.offset !== undefined) { this.offset = data.offset; } } }