Skip to content

Latest commit

 

History

History
35 lines (21 loc) · 1.31 KB

File metadata and controls

35 lines (21 loc) · 1.31 KB

Dodge the particles in this fun and simple HTML5 game.

Play

Click here to try the game.

Modify

Clone this repository:

git clone --depth=1 https://github.com/MatthewDiana/particles.git

Entry point can be found in js/main.js. Code for the various game states can be found in js/states/. Images and audio can be found in assets/.

You should be using a local web server for your development (learn why loading assets over file:// can be dangerous here). If you have Python installed on your system, this can be easily accomplished by spawning a SimpleHTTPServer in the project's root directory:

python -m SimpleHTTPServer 8080

Alternatively, you can use the Web Server for Chrome extension if you are a fan of Google's web browser.

You can then access the game by pointing to http://localhost:8080/.

Frameworks

  • Phaser - Open source HTML5 game framework for Canvas and WebGL.

Thanks