Merge pull request #1521 from thecodingmachine/change-player-depth

Change character depth to 0
This commit is contained in:
David Négrier 2021-10-25 15:11:09 +02:00 committed by GitHub
commit 1efcbb4529
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ export abstract class Character extends Container {
this.setSize(16, 16);
this.getBody().setSize(16, 16); //edit the hitbox to better match the character model
this.getBody().setOffset(0, 8);
this.setDepth(-1);
this.setDepth(0);
if (typeof companion === "string") {
this.addCompanion(companion, companionTexturePromise);