phaser/Tests/cameras/follow sprite.ts

63 lines
1.3 KiB
TypeScript
Raw Normal View History

/// <reference path="../../Phaser/Game.ts" />
2013-04-12 16:19:56 +00:00
(function () {
2013-04-18 13:16:18 +00:00
var myGame = new Phaser.Game(this, 'game', 800, 600, init, create, update);
2013-04-12 16:19:56 +00:00
function init() {
myGame.world.setSize(1920, 1920);
myGame.loader.addImageFile('grid', 'assets/tests/debug-grid-1920x1920.png');
myGame.loader.addImageFile('car', 'assets/sprites/car90.png');
myGame.loader.load();
}
var car;
function create() {
myGame.createSprite(0, 0, 'grid');
car = myGame.createSprite(400, 300, 'car');
myGame.camera.follow(car);
myGame.onRenderCallback = render;
2013-04-12 16:19:56 +00:00
}
function update() {
car.velocity.x = 0;
car.velocity.y = 0;
car.angularVelocity = 0;
2013-04-18 13:16:18 +00:00
if (myGame.input.keyboard.isDown(Phaser.Keyboard.LEFT))
2013-04-12 16:19:56 +00:00
{
car.angularVelocity = -200;
}
2013-04-18 13:16:18 +00:00
else if (myGame.input.keyboard.isDown(Phaser.Keyboard.RIGHT))
2013-04-12 16:19:56 +00:00
{
car.angularVelocity = 200;
}
2013-04-18 13:16:18 +00:00
if (myGame.input.keyboard.isDown(Phaser.Keyboard.UP))
2013-04-12 16:19:56 +00:00
{
car.velocity.copyFrom(myGame.motion.velocityFromAngle(car.angle, 300));
2013-04-12 16:19:56 +00:00
}
}
function render() {
myGame.camera.renderDebugInfo(32, 32);
car.renderDebugInfo(200, 32);
}
2013-04-12 16:19:56 +00:00
})();