Skip to content
Snippets Groups Projects
Commit 38fddc9a authored by Paolo.Brasolin's avatar Paolo.Brasolin
Browse files

refactor: #fe improve init placement and bound checking

parent 50af7bb2
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ class Critter extends Phaser.Physics.Arcade.Sprite {
this.setScale(scale);
// NOTE: just outside the bound and above the ground
this.setPosition(
-0.5 * this.displayWidth,
scene.cameras.main.height - 30 - 0.5 * this.displayHeight,
);
this.walk();
}
......@@ -52,11 +58,11 @@ class Critter extends Phaser.Physics.Arcade.Sprite {
}
isOutsideRightBound() {
return this.x - this.width * 0.5 > this.scene.cameras.main.width;
return this.getBounds().left > this.scene.cameras.main.width;
}
isOutsideLeftBound() {
return this.x + this.width * 0.5 < 0;
return this.getBounds().right < 0;
}
walk() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment