UNPKG

@tsparticles/plugin-canvas-mask

Version:

tsParticles canvas mask plugin

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