All Projects → koreezgames → phaser-particle-editor-plugin

koreezgames / phaser-particle-editor-plugin

Licence: MIT license
This plugin creates particles based on JSON data generated by Phaser Particle Editor

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to phaser-particle-editor-plugin

craft
Phaser Library with utility chainable functions
Stars: ✭ 27 (-3.57%)
Mutual labels:  phaser, phaserjs, phaser-plugin
Opensc2k
OpenSC2K - An Open Source remake of Sim City 2000 by Maxis
Stars: ✭ 4,753 (+16875%)
Mutual labels:  phaser, phaserjs, phaser-game
phaser-typescript-webpack
Another Phaser CE boilerplate using TypeScript and Webpack.
Stars: ✭ 17 (-39.29%)
Mutual labels:  games, phaser, phaser-game
phaser3-plugin-pathbuilder
Draw and edit Lines, Bezier Curves, Splines at runtime, explore your scene and export your paths to Phaser
Stars: ✭ 67 (+139.29%)
Mutual labels:  games, phaser
Phaser Kinetic Scrolling Plugin
Kinetic Scrolling plugin for Canvas using Phaser Framework
Stars: ✭ 117 (+317.86%)
Mutual labels:  phaser, phaserjs
Phaser3 Particle Editor
A flexible editor for building phaser particles.
Stars: ✭ 131 (+367.86%)
Mutual labels:  phaser, particles
Webpack Starter Basic
A simple webpack starter project for your basic modern web development needs.
Stars: ✭ 552 (+1871.43%)
Mutual labels:  phaser, phaserjs
Slither.io Clone
Learn how to make Slither.io with JavaScript and Phaser! This game clones all the core features of Slither.io, including mouse-following controls, snake collisions, food, snake growth, eyes, and more. Progress through each part of the source code with our Slither.io tutorial series.
Stars: ✭ 168 (+500%)
Mutual labels:  phaser, phaserjs
Phaser Examples
🎮 Game collections made by Phaser
Stars: ✭ 140 (+400%)
Mutual labels:  phaser, phaserjs
Phaser State Transition
State transition plugin for Phaser.js
Stars: ✭ 169 (+503.57%)
Mutual labels:  phaser, phaserjs
dungeonz
Everything for the game Rogueworld.
Stars: ✭ 88 (+214.29%)
Mutual labels:  phaser, phaserjs
phaser-plugin-scene-graph
Prints the display tree. Phaser 2/CE
Stars: ✭ 32 (+14.29%)
Mutual labels:  phaser, phaser-plugin
Phaser Node Kit
Rapid Game Development with PhaserJS and Node for Modern Browsers
Stars: ✭ 39 (+39.29%)
Mutual labels:  phaser, phaserjs
Phaser Examples
Contains hundreds of source code examples and related media for the Phaser HTML5 Game Framework.
Stars: ✭ 1,680 (+5900%)
Mutual labels:  phaser, particles
Phaser
Phaser is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.
Stars: ✭ 30,918 (+110321.43%)
Mutual labels:  phaser, phaserjs
Ion Phaser
A web component to use Phaser Framework with Angular, React, Vue, etc 🎮
Stars: ✭ 152 (+442.86%)
Mutual labels:  phaser, phaserjs
phaser multiplayer demo
HTML5 Multiplayer with Phaser and Go
Stars: ✭ 35 (+25%)
Mutual labels:  games, phaser
phaser-mario
Mario-like class for Phaser
Stars: ✭ 19 (-32.14%)
Mutual labels:  games, phaser
Phaser3 Docs
Phaser 3 Documentation and TypeScript Defs
Stars: ✭ 339 (+1110.71%)
Mutual labels:  phaser, phaserjs
Phaser Ui Tools
Functions for creating a UI in Phaser. Rows, columns, viewports, scrollbars, stuff like that.
Stars: ✭ 187 (+567.86%)
Mutual labels:  phaser, phaserjs

Phaser Particle Editor Plugin

Build Status David Project status

This plugin creates particle effects based on JSON data generated by Phaser Particle Editor

Getting Started

Installation

Using script tag:

<script src="//cdn.jsdelivr.net/npm/@koreez/phaser-particle-editor-plugin/dist/plugin.min.js"></script>

Using npm:

npm

$ npm i -g npm
$ npm i --save  @koreez/phaser-particle-editor-plugin

Usage

Import the plugin

CommonJS
var ParticleEditorPlugin = require("@koreez/phaser-particle-editor-plugin");
ES2015
import ParticleEditorPlugin from "@koreez/phaser-particle-editor-plugin";

Load the plugin

You need to load the plugin in your game. This is done just like any other plugin in Phaser. So, to load the plugin, include it one of the Phaser States.

game.plugins.add(ParticleEditorPlugin);

The plugin will patch your Phaser game with additional add / make methods so this plugin fits up in Phaser like any normal object.

Create particles

// x - any
// y - any
// data - should be already loaded JSON key or existing object based on Particle Editor data
// group - parent container
game.add.particleEffect(x, y, data, group);
// or
game.make.particleEffect(x, y, data);

News & Community

We have a forum so you can always be up to date with latest news!

Contributing

Coming soon!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].