Mr. Croc is less fat now

This commit is contained in:
Mal 2023-09-28 12:04:04 +02:00
parent feb3f9c844
commit de5df11193
1 changed files with 35 additions and 1 deletions

View File

@ -23,4 +23,38 @@ 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;
}
}