登录内测(欢迎小伙伴们通过右侧登录按钮进行注册和登录)
add a sprite (这是一个创建精灵的例子)
PHASER
		
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { preload: preload, create: create });

function preload() {
    game.load.image('mushroom', 'assets/sprites/mushroom2.png');
}

function create() {
	// 在(200,200)的地方创建一个精灵
    var test = game.add.sprite(200, 200, 'mushroom');
}
		

见注释