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
- Host: GitHub
- URL: https://github.com/tsparticles/editor
- Owner: tsparticles
- License: mit
- Created: 2023-01-12T23:12:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-08T12:57:05.000Z (6 months ago)
- Last Synced: 2025-04-19T10:28:24.646Z (6 months ago)
- Topics: hacktoberfest, javascript, object-gui, tsparticles, typescript
- Language: TypeScript
- Homepage:
- Size: 966 KB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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");
});
```