@tsparticles/editor
Version:
tsParticles Configuration Editor
24 lines (18 loc) • 472 B
Markdown
tsParticles options GUI editor made with [Object GUI](https://github.com/matteobruni/object-gui)
```javascript
tsParticles
.load("tsparticles", {
/* your options here */
})
.then((container) => {
showEditor(container).top().right().theme("dark");
});
```
or
```javascript
tsParticles.loadJSON("tsparticles", "particles.json").then((container) => {
showEditor(container).top().right().theme("dark");
});
```