uberpong/dev/lib/game/entities/paddle-player.js
Aaron Mueller b4c3d98984 Refactorthe score and make it global ...
Still full of bugs and crap ...
2013-04-18 21:55:26 +02:00

30 lines
639 B
JavaScript

ig.module(
'game.entities.paddle-player'
)
.requires(
'game.entities.paddle'
)
.defines(function(){
EntityPaddlePlayer = EntityPaddle.extend({
name: 'paddle-player',
animSheet: new ig.AnimationSheet('media/paddle-player.png', 30, 120),
update: function(){
if (ig.input.state('up')) {
this.vel.y = -400;
} else if (ig.input.state('down')) {
this.vel.y = 400;
} else if (ig.input.state('force-top')) {
this.pos.y = 48;
} else if (ig.input.state('force-bottom')) {
this.pos.y = 240;
} else {
this.vel.y = 0;
}
this.parent();
}
});
});