Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 472 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 472 Bytes

tsParticles options GUI editor

tsParticles options GUI editor made with Object GUI

Usage

tsParticles
  .load("tsparticles", {
    /* your options here */
  })
  .then((container) => {
    showEditor(container).top().right().theme("dark");
  });

or

tsParticles.loadJSON("tsparticles", "particles.json").then((container) => {
  showEditor(container).top().right().theme("dark");
});