39 lines
901 B
JavaScript
39 lines
901 B
JavaScript
/////////////////////////////
|
|
// Main game
|
|
|
|
var game = new Phaser.Game(1000, 800, Phaser.CANVAS, "Round rect image button test",
|
|
{preload:preload, create:create, update:update, render:render});
|
|
|
|
function preload() {
|
|
game.load.image('phaser', './image/phaser.png');
|
|
|
|
// game.load.spritesheet('button', './image/button_basic.png', 200, 100);
|
|
}
|
|
|
|
function create() {
|
|
var i = game.add.image(game.world.centerX, game.world.centerY + 70, 'phaser');
|
|
i.anchor.set(0.5);
|
|
game.stage.backgroundColor = '#4d4d4d';
|
|
graphics = game.add.graphics(0, 0);
|
|
|
|
|
|
new RoundRectButton(new RectSetting(200, 100));
|
|
}
|
|
|
|
function update() {
|
|
}
|
|
|
|
function render() {
|
|
// showDebugMessage();
|
|
}
|
|
|
|
|
|
/////////////////////////////
|
|
// custom methods
|
|
|
|
|
|
function showDebugMessage() {
|
|
// game.debug.text( "This is debug text 한글 " + spriteMushroom.x + ", " + spriteMushroom.y + ", highscore : " + highScore, 100, 380 );
|
|
}
|
|
|