├── .bowerrc ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── deploy ├── assets │ ├── config │ │ ├── bubbleSpray.json │ │ ├── bubbleStream.json │ │ ├── bubbles.json │ │ ├── bubblesVertical.json │ │ ├── cartoonSmoke.json │ │ ├── cartoonSmokeBlast.json │ │ ├── config.json │ │ ├── explosion.json │ │ ├── explosion2.json │ │ ├── explosion3.json │ │ ├── flame.json │ │ ├── fountain.json │ │ ├── gas.json │ │ ├── megamanDeath.json │ │ ├── pixelTrail.json │ │ ├── pixieDust.json │ │ ├── rain.json │ │ ├── smoke.json │ │ ├── snow.json │ │ ├── sparks.json │ │ └── trail.json │ ├── css │ │ ├── libraries.css │ │ └── main.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── images │ │ ├── Bubbles50px.png │ │ ├── Bubbles99px.png │ │ ├── CartoonSmoke.png │ │ ├── Fire.png │ │ ├── HardCircle.png │ │ ├── HardRain.png │ │ ├── Pixel100px.png │ │ ├── Pixel25px.png │ │ ├── Pixel50px.png │ │ ├── Snow100px.png │ │ ├── Snow50px.png │ │ ├── Sparks.png │ │ ├── bg.png │ │ ├── icon.icns │ │ ├── icon.ico │ │ ├── icon.png │ │ ├── particle.png │ │ └── smokeparticle.png │ └── js │ │ ├── colorpicker │ │ ├── README.md │ │ ├── i18n │ │ │ ├── jquery.ui.colorpicker-de.js │ │ │ ├── jquery.ui.colorpicker-en.js │ │ │ ├── jquery.ui.colorpicker-fr.js │ │ │ ├── jquery.ui.colorpicker-nl.js │ │ │ ├── jquery.ui.colorpicker-pt-br.js │ │ │ └── jquery.ui.colorpicker-ru.js │ │ ├── images │ │ │ ├── 128 │ │ │ │ ├── bar-alpha.png │ │ │ │ ├── bar.png │ │ │ │ └── map.png │ │ │ ├── bar-alpha.png │ │ │ ├── bar-opacity.png │ │ │ ├── bar-pointer.png │ │ │ ├── bar.png │ │ │ ├── map-opacity.png │ │ │ ├── map-pointer.png │ │ │ ├── map.png │ │ │ ├── preview-opacity.png │ │ │ └── ui-colorpicker.png │ │ ├── jqcolorpicker.jquery.json │ │ ├── jquery.colorpicker.css │ │ ├── jquery.colorpicker.js │ │ ├── parsers │ │ │ ├── jquery.ui.colorpicker-cmyk-parser.js │ │ │ └── jquery.ui.colorpicker-cmyk-percentage-parser.js │ │ ├── parts │ │ │ ├── jquery.ui.colorpicker-memory.js │ │ │ └── jquery.ui.colorpicker-rgbslider.js │ │ ├── swatches │ │ │ ├── jquery.ui.colorpicker-crayola.js │ │ │ ├── jquery.ui.colorpicker-pantone.js │ │ │ └── jquery.ui.colorpicker-ral-classic.js │ │ └── test │ │ │ ├── events.js │ │ │ └── index.html │ │ ├── jquery-ui-smoothness │ │ ├── external │ │ │ └── jquery │ │ │ │ └── jquery.js │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ │ ├── libraries.js │ │ └── main.js ├── index.html └── package.json ├── installer ├── assets │ ├── background.png │ └── background@2x.png ├── osx32.json ├── osx64.json ├── win32.nsi └── win64.nsi ├── package.json ├── project.json ├── src ├── App.js ├── App.less ├── Editor.js ├── EditorInterface.js └── Menu.js └── tasks ├── aliases.js ├── exec.js ├── gh-pages.js ├── nodewebkit.js └── overrides ├── clean.js ├── replace.js ├── uglify.js ├── version.js └── watch.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/bower.json -------------------------------------------------------------------------------- /deploy/assets/config/bubbleSpray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/bubbleSpray.json -------------------------------------------------------------------------------- /deploy/assets/config/bubbleStream.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/bubbleStream.json -------------------------------------------------------------------------------- /deploy/assets/config/bubbles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/bubbles.json -------------------------------------------------------------------------------- /deploy/assets/config/bubblesVertical.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/bubblesVertical.json -------------------------------------------------------------------------------- /deploy/assets/config/cartoonSmoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/cartoonSmoke.json -------------------------------------------------------------------------------- /deploy/assets/config/cartoonSmokeBlast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/cartoonSmokeBlast.json -------------------------------------------------------------------------------- /deploy/assets/config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/config.json -------------------------------------------------------------------------------- /deploy/assets/config/explosion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/explosion.json -------------------------------------------------------------------------------- /deploy/assets/config/explosion2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/explosion2.json -------------------------------------------------------------------------------- /deploy/assets/config/explosion3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/explosion3.json -------------------------------------------------------------------------------- /deploy/assets/config/flame.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/flame.json -------------------------------------------------------------------------------- /deploy/assets/config/fountain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/fountain.json -------------------------------------------------------------------------------- /deploy/assets/config/gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/gas.json -------------------------------------------------------------------------------- /deploy/assets/config/megamanDeath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/megamanDeath.json -------------------------------------------------------------------------------- /deploy/assets/config/pixelTrail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/pixelTrail.json -------------------------------------------------------------------------------- /deploy/assets/config/pixieDust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/pixieDust.json -------------------------------------------------------------------------------- /deploy/assets/config/rain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/rain.json -------------------------------------------------------------------------------- /deploy/assets/config/smoke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/smoke.json -------------------------------------------------------------------------------- /deploy/assets/config/snow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/snow.json -------------------------------------------------------------------------------- /deploy/assets/config/sparks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/sparks.json -------------------------------------------------------------------------------- /deploy/assets/config/trail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/config/trail.json -------------------------------------------------------------------------------- /deploy/assets/css/libraries.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/css/libraries.css -------------------------------------------------------------------------------- /deploy/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/css/main.css -------------------------------------------------------------------------------- /deploy/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /deploy/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /deploy/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /deploy/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /deploy/assets/images/Bubbles50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Bubbles50px.png -------------------------------------------------------------------------------- /deploy/assets/images/Bubbles99px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Bubbles99px.png -------------------------------------------------------------------------------- /deploy/assets/images/CartoonSmoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/CartoonSmoke.png -------------------------------------------------------------------------------- /deploy/assets/images/Fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Fire.png -------------------------------------------------------------------------------- /deploy/assets/images/HardCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/HardCircle.png -------------------------------------------------------------------------------- /deploy/assets/images/HardRain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/HardRain.png -------------------------------------------------------------------------------- /deploy/assets/images/Pixel100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Pixel100px.png -------------------------------------------------------------------------------- /deploy/assets/images/Pixel25px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Pixel25px.png -------------------------------------------------------------------------------- /deploy/assets/images/Pixel50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Pixel50px.png -------------------------------------------------------------------------------- /deploy/assets/images/Snow100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Snow100px.png -------------------------------------------------------------------------------- /deploy/assets/images/Snow50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Snow50px.png -------------------------------------------------------------------------------- /deploy/assets/images/Sparks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/Sparks.png -------------------------------------------------------------------------------- /deploy/assets/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/bg.png -------------------------------------------------------------------------------- /deploy/assets/images/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/icon.icns -------------------------------------------------------------------------------- /deploy/assets/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/icon.ico -------------------------------------------------------------------------------- /deploy/assets/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/icon.png -------------------------------------------------------------------------------- /deploy/assets/images/particle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/particle.png -------------------------------------------------------------------------------- /deploy/assets/images/smokeparticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/images/smokeparticle.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/README.md -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-de.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-en.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-fr.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-nl.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-pt-br.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/i18n/jquery.ui.colorpicker-ru.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/128/bar-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/128/bar-alpha.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/128/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/128/bar.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/128/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/128/map.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/bar-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/bar-alpha.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/bar-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/bar-opacity.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/bar-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/bar-pointer.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/bar.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/map-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/map-opacity.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/map-pointer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/map-pointer.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/map.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/preview-opacity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/preview-opacity.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/images/ui-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/images/ui-colorpicker.png -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/jqcolorpicker.jquery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/jqcolorpicker.jquery.json -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/jquery.colorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/jquery.colorpicker.css -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/jquery.colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/jquery.colorpicker.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/parsers/jquery.ui.colorpicker-cmyk-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/parsers/jquery.ui.colorpicker-cmyk-parser.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/parsers/jquery.ui.colorpicker-cmyk-percentage-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/parsers/jquery.ui.colorpicker-cmyk-percentage-parser.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/parts/jquery.ui.colorpicker-memory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/parts/jquery.ui.colorpicker-memory.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/parts/jquery.ui.colorpicker-rgbslider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/parts/jquery.ui.colorpicker-rgbslider.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-crayola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-crayola.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-pantone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-pantone.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-ral-classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/swatches/jquery.ui.colorpicker-ral-classic.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/test/events.js -------------------------------------------------------------------------------- /deploy/assets/js/colorpicker/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/colorpicker/test/index.html -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/external/jquery/jquery.js -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.css -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.js -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.min.css -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.min.js -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.structure.css -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.theme.css -------------------------------------------------------------------------------- /deploy/assets/js/jquery-ui-smoothness/jquery-ui.theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/jquery-ui-smoothness/jquery-ui.theme.min.css -------------------------------------------------------------------------------- /deploy/assets/js/libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/libraries.js -------------------------------------------------------------------------------- /deploy/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/assets/js/main.js -------------------------------------------------------------------------------- /deploy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/index.html -------------------------------------------------------------------------------- /deploy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/deploy/package.json -------------------------------------------------------------------------------- /installer/assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/assets/background.png -------------------------------------------------------------------------------- /installer/assets/background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/assets/background@2x.png -------------------------------------------------------------------------------- /installer/osx32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/osx32.json -------------------------------------------------------------------------------- /installer/osx64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/osx64.json -------------------------------------------------------------------------------- /installer/win32.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/win32.nsi -------------------------------------------------------------------------------- /installer/win64.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/installer/win64.nsi -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/package.json -------------------------------------------------------------------------------- /project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/project.json -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/src/App.less -------------------------------------------------------------------------------- /src/Editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/src/Editor.js -------------------------------------------------------------------------------- /src/EditorInterface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/src/EditorInterface.js -------------------------------------------------------------------------------- /src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/src/Menu.js -------------------------------------------------------------------------------- /tasks/aliases.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/aliases.js -------------------------------------------------------------------------------- /tasks/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/exec.js -------------------------------------------------------------------------------- /tasks/gh-pages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/gh-pages.js -------------------------------------------------------------------------------- /tasks/nodewebkit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/nodewebkit.js -------------------------------------------------------------------------------- /tasks/overrides/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/overrides/clean.js -------------------------------------------------------------------------------- /tasks/overrides/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/overrides/replace.js -------------------------------------------------------------------------------- /tasks/overrides/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/overrides/uglify.js -------------------------------------------------------------------------------- /tasks/overrides/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/overrides/version.js -------------------------------------------------------------------------------- /tasks/overrides/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixijs-userland/particle-emitter-editor/HEAD/tasks/overrides/watch.js --------------------------------------------------------------------------------