{"id":14963981,"url":"https://github.com/koreezgames/phaser3-particle-editor","last_synced_at":"2025-10-25T03:31:16.953Z","repository":{"id":55834008,"uuid":"143147062","full_name":"koreezgames/phaser3-particle-editor","owner":"koreezgames","description":"A flexible editor for building phaser particles.","archived":false,"fork":false,"pushed_at":"2020-06-02T00:11:31.000Z","size":13465,"stargazers_count":173,"open_issues_count":11,"forks_count":15,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-01-31T05:33:27.027Z","etag":null,"topics":["editor","emitter","game","game-development","particles","phaser","phaser3","wysiwyg"],"latest_commit_sha":null,"homepage":"https://koreezgames.github.io/phaser3-particle-editor/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/koreezgames.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-01T11:29:36.000Z","updated_at":"2024-12-17T08:45:00.000Z","dependencies_parsed_at":"2022-08-15T07:40:14.384Z","dependency_job_id":null,"html_url":"https://github.com/koreezgames/phaser3-particle-editor","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koreezgames%2Fphaser3-particle-editor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koreezgames%2Fphaser3-particle-editor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koreezgames%2Fphaser3-particle-editor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/koreezgames%2Fphaser3-particle-editor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/koreezgames","download_url":"https://codeload.github.com/koreezgames/phaser3-particle-editor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238075271,"owners_count":19412307,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["editor","emitter","game","game-development","particles","phaser","phaser3","wysiwyg"],"created_at":"2024-09-24T13:32:25.403Z","updated_at":"2025-10-25T03:31:11.428Z","avatar_url":"https://github.com/koreezgames.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Phaser3 Particle Editor\n\n[![GitHub license](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/koreezgames/phaser3-particle-editor/blob/master/LICENSE)\n[![Build Status](https://secure.travis-ci.org/koreezgames/phaser3-particle-editor.svg?branch=master)](https://travis-ci.org/koreezgames/phaser3-particle-editor)\n[![codebeat badge](https://codebeat.co/badges/e3792494-1875-4826-be00-2124148b9287)](https://codebeat.co/projects/github-com-koreezgames-phaser3-particle-editor-master)\n[![Greenkeeper badge](https://badges.greenkeeper.io/koreezgames/phaser3-particle-editor.svg)](https://greenkeeper.io/)\n[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/koreezgames/phaser3-particle-editor/pulls)\n[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n\nThis tool was designed to interactively create particle emitters using [Phaser](http://phaser.io)\n\nView the editor [here](https://koreezgames.github.io/phaser3-particle-editor/).\n\n![Showcase](https://raw.githubusercontent.com/koreezgames/phaser3-particle-editor/master/showcase.gif)\n\nKey features:\n\n- Blazing fast\n- No runtime needed\n- Easy to use\n\n## Getting Started\n\nFirst you want to get your project exported via [editor](https://koreezgames.github.io/phaser3-particle-editor/). You can do it by clicking on the menu button right next to the project name.\n\nExported project structure:\n\n![Project](https://raw.githubusercontent.com/koreezgames/phaser3-particle-editor/master/project.png)\n\n## Usage\n\n```javascript\nvar config = {\n  type: Phaser.WEBGL,\n  width: 800,\n  height: 600,\n  backgroundColor: '#262626',\n  parent: 'phaser-example',\n  scene: {\n    preload: preload,\n    create: create,\n  },\n};\n\nvar game = new Phaser.Game(config);\n\nfunction preload() {\n  this.load.atlas('shapes', 'assets/shapes.png', 'assets/shapes.json');\n  this.load.text('particle-effect', 'assets/particle-effect.json');\n}\n\nfunction create() {\n  this.add.particles('shapes',  new Function('return ' + this.cache.text.get('particle-effect'))());\n}\n```\n\n## Contributing\n\nThe main purpose of this repository is to continue to evolve Phaser, making it easier to use. Development of Editor happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving Editor.\n\n### [Code of Conduct](https://github.com/koreezgames/phaser3-particle-editor/blob/master/CODE_OF_CONDUCT.md)\n\nThis Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at http://contributor-covenant.org/version/1/4. Please read [the full text](https://github.com/koreezgames/phaser3-particle-editor/blob/master/CODE_OF_CONDUCT.md) so that you can understand what actions will and will not be tolerated.\n\n### [Contributing Guide](https://github.com/koreezgames/phaser3-particle-editor/blob/master/CONTRIBUTING.md)\n\nRead our [contributing guide](https://github.com/koreezgames/phaser3-particle-editor/blob/master/CONTRIBUTING.md) to learn about our development process, how to propose bugfixes and improvements, and how to build and test your changes to Editor.\n\n## License\n\nEditor is [MIT licensed](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoreezgames%2Fphaser3-particle-editor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkoreezgames%2Fphaser3-particle-editor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkoreezgames%2Fphaser3-particle-editor/lists"}