Mr. Crocs fatness reverted

This commit is contained in:
Mal 2023-10-17 17:36:46 +02:00
parent de5df11193
commit 8780d57df2
1 changed files with 0 additions and 34 deletions

View File

@ -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;
}
}