Skip to content

Instantly share code, notes, and snippets.

@videlais
Created August 22, 2015 02:00
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/f3d903a49d3d72f65bd6 to your computer and use it in GitHub Desktop.
Save videlais/f3d903a49d3d72f65bd6 to your computer and use it in GitHub Desktop.
Phaser Sprite Basics
var game = new Phaser.Game(
200, //The width in pixels
200, //The height in pixels
Phaser.AUTO, //The render system
"phaser", //The element
{
create: create, // The create function
update: update // The update function
}
);
function create() {
var sprite = game.add.sprite(
20, // The 'x' position
20, // The 'y' position
'sprite' // The image-cache name
);
}
function update() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment