mirror of
https://github.com/photonstorm/phaser
synced 2024-12-03 18:10:10 +00:00
31 lines
406 B
JavaScript
31 lines
406 B
JavaScript
|
|
||
|
var game = new Phaser.Game(800, 600, Phaser.AUTO, 'phaser-example', { preload: preload, create: create, update: update, render: render });
|
||
|
|
||
|
function preload() {
|
||
|
|
||
|
game.load.image('pic', 'assets/pics/backscroll.png');
|
||
|
|
||
|
}
|
||
|
|
||
|
var text;
|
||
|
var b;
|
||
|
var grd;
|
||
|
|
||
|
function create() {
|
||
|
|
||
|
game.stage.setBackgroundColor(0x2d2d2d);
|
||
|
|
||
|
text = game.add.text(0, 0, "time");
|
||
|
|
||
|
}
|
||
|
|
||
|
function update() {
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
function render() {
|
||
|
|
||
|
|
||
|
}
|