UNPKG

@tsparticles/interaction-external-bounce

Version:

tsParticles bounce external interaction

11 lines (10 loc) 240 B
import { isNull, loadProperty } from "@tsparticles/engine"; export class Bounce { distance = 200; load(data) { if (isNull(data)) { return; } loadProperty(this, "distance", data.distance); } }