diff --git a/js/MrCroc.js b/js/MrCroc.js index 2c6a613..84b1de1 100644 --- a/js/MrCroc.js +++ b/js/MrCroc.js @@ -23,38 +23,4 @@ export default class MrCroc extends Movable this.playAnimation('WALK_LEFT', timestamp); super.moveLeft(delta); } - - getPositionFootLeft() { - const position = super.getPositionFootLeft(); - position.x += 10; - - return position; - } - - getPositionFootRight() { - const position = super.getPositionFootRight(); - position.x -= 10; - - return position; - } - - getPositionHeadLeft() { - const position = super.getPositionHeadLeft(); - - if (this.currentAnimation === 'WALK_RIGHT') { - position.x += 10; - } - - return position; - } - - getPositionHeadRight() { - const position = super.getPositionHeadRight(); - - if (this.currentAnimation === 'WALK_LEFT') { - position.x += 10; - } - - return position; - } }