mirror of
https://github.com/photonstorm/phaser
synced 2024-11-23 21:24:09 +00:00
19 lines
414 B
JavaScript
19 lines
414 B
JavaScript
|
|
var game = new Phaser.Game(800, 600, Phaser.CANVAS, 'phaser-example', { create: create, render: render });
|
|
|
|
var circle;
|
|
var floor;
|
|
|
|
function create() {
|
|
|
|
circle = new Phaser.Circle(game.world.centerX, 100,64);
|
|
|
|
}
|
|
|
|
function render () {
|
|
|
|
game.debug.circle(circle,'#cfffff');
|
|
game.debug.text('Diameter : '+circle.diameter,50,200);
|
|
game.debug.text('Circumference : '+circle.circumference(),50,230);
|
|
|
|
}
|