UNPKG

@tsparticles/updater-orbit

Version:

tsParticles particles orbit updater

11 lines (10 loc) 241 B
import { ValueWithRandom, isNull } from "@tsparticles/engine"; export class OrbitRotation extends ValueWithRandom { value = 45; load(data) { if (isNull(data)) { return; } super.load(data); } }