Skip to content

StephNathai/teamDontPhaserMeBro

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

teamDontPhaserMeBro

Mini group project creating a game using Phaser

By Steph Nathai, Calvin Yeung, Jennifer Yien, Eric Kim, Harrison Riddell

  • Desktop and Mobile HTML 5 game framework
  • Open source
  • Pixi.js and Canvas
  • Maintained by Photo Storm Limited
Want more info?
  • Checkout their Twitter
  • Subscribe to the Newsletter and more

Technology & Steps

  • HTML - simply for hosting the Canvas
  • CSS - only available in-line in the script
  • Phaser.js - download Phaser from their website and link them to your HTML
  • Create separate js file (this is where your code will go) and link to HTML
  • Code to get started
var game = new Phaser.Game(800, 600, Phaser.AUTO, '', { preload: preload, create: create, update: update });

function preload() {
}

function create() {
}

function update() {
}
Awesome aspect of Phaser.js
  • Easy Asset Loading (Images, Spritesheets, texture)
  • Rendering
  • Audio
  • Easy Input (keyboard, mouse, etc.)
  • Physics, Tweens, & Particles

Check out what we created

  • What about multiplayer? To have multiplayer, you would need a web server For more information on makeing your first game check it out here

Want to play our game live Click Here

About

Mini group project creating a game using Phaser

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 95.0%
  • HTML 3.5%
  • CSS 1.5%