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