├── .gitattributes ├── .gitignore ├── Blob.js ├── FileSaver.min.js ├── LICENSE ├── README.md ├── assets ├── example_blockyflame.json ├── example_fireflies.json ├── example_fireworks.json └── example_snow.json ├── config.json ├── custom_index.html ├── project.flow ├── screenshot.png └── src └── Main.hx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/.gitignore -------------------------------------------------------------------------------- /Blob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/Blob.js -------------------------------------------------------------------------------- /FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/FileSaver.min.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/README.md -------------------------------------------------------------------------------- /assets/example_blockyflame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/assets/example_blockyflame.json -------------------------------------------------------------------------------- /assets/example_fireflies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/assets/example_fireflies.json -------------------------------------------------------------------------------- /assets/example_fireworks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/assets/example_fireworks.json -------------------------------------------------------------------------------- /assets/example_snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/assets/example_snow.json -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/config.json -------------------------------------------------------------------------------- /custom_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/custom_index.html -------------------------------------------------------------------------------- /project.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/project.flow -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/Main.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/LuxeParticleDesigner/HEAD/src/Main.hx --------------------------------------------------------------------------------