Skip to content

Instantly share code, notes, and snippets.

@videlais
Created August 22, 2015 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save videlais/17dd271ec70e5b571956 to your computer and use it in GitHub Desktop.
Save videlais/17dd271ec70e5b571956 to your computer and use it in GitHub Desktop.
Phaser Group Basics - A
var game = new Phaser.Game(
200, //The width in pixels
200, //The height in pixels
Phaser.AUTO, //The render system
"phaser", //The element
{
preload: preload, // The preload function
create: create, // The create function
update: update // The update function
}
);
function preload() {}
function create() {
var group = game.add.group();
}
function update() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment