Merge branch 'develop' of github.com:thecodingmachine/workadventure

This commit is contained in:
_Bastler
2021-10-18 14:57:20 +02:00
3 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -62,11 +62,13 @@ export abstract class Character extends Container {
.then((textures) => {
this.addTextures(textures, frame);
this.invisible = false;
this.playAnimation(direction, moving);
})
.catch(() => {
return lazyLoadPlayerCharacterTextures(scene.load, [ "color_22", "eyes_23" ]).then((textures) => {
this.addTextures(textures, frame);
this.invisible = false;
this.playAnimation(direction, moving);
});
});
@@ -109,8 +111,6 @@ export abstract class Character extends Container {
this.getBody().setOffset(0, 8);
this.setDepth(-1);
this.playAnimation(direction, moving);
if (typeof companion === "string") {
this.addCompanion(companion, companionTexturePromise);
}