An open API service indexing awesome lists of open source software.

https://github.com/tsparticles/editor

tsParticles official editor
https://github.com/tsparticles/editor

hacktoberfest javascript object-gui tsparticles typescript

Last synced: 5 months ago
JSON representation

tsParticles official editor

Awesome Lists containing this project

README

          

# tsParticles options GUI editor

tsParticles options GUI editor made with [Object GUI](https://github.com/matteobruni/object-gui)

## Usage

```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");
});
```