Remove console logs

This commit is contained in:
schmelczerandras 2020-10-20 10:00:20 +02:00
parent 021cac655c
commit 909b69392d
2 changed files with 1 additions and 8 deletions

View file

@ -22,7 +22,6 @@ export class GameObjectContainer extends CommandReceiver {
protected commandExecutors: CommandExecutors = { protected commandExecutors: CommandExecutors = {
[CreatePlayerCommand.type]: (c: CreatePlayerCommand) => { [CreatePlayerCommand.type]: (c: CreatePlayerCommand) => {
this.player = c.character as PlayerCharacterView; this.player = c.character as PlayerCharacterView;
console.log(c.character);
this.camera = new Camera(this.game); this.camera = new Camera(this.game);
this.addObject(this.player); this.addObject(this.player);
this.addObject(this.camera); this.addObject(this.camera);

View file

@ -24,8 +24,6 @@ export class PlayerCharacterView extends PlayerCharacterBase implements ViewObje
super(id, name, colorIndex, team, health, head, leftFoot, rightFoot); super(id, name, colorIndex, team, health, head, leftFoot, rightFoot);
this.shape = new BlobShape(colorIndex); this.shape = new BlobShape(colorIndex);
console.log(this.id, 'created');
this.nameElement = document.createElement('div'); this.nameElement = document.createElement('div');
this.nameElement.className = 'player-tag'; this.nameElement.className = 'player-tag';
this.nameElement.innerText = this.name; this.nameElement.innerText = this.name;
@ -43,15 +41,11 @@ export class PlayerCharacterView extends PlayerCharacterBase implements ViewObje
} }
public beforeDestroy(): void { public beforeDestroy(): void {
console.log(this.id, 'destroyes');
this.nameElement.parentElement?.removeChild(this.nameElement); this.nameElement.parentElement?.removeChild(this.nameElement);
} }
private elementAdded = false;
public draw(renderer: Renderer, overlay: HTMLElement): void { public draw(renderer: Renderer, overlay: HTMLElement): void {
if (!this.elementAdded) { if (!this.nameElement.parentElement) {
this.elementAdded = true;
console.log(this.id, 'add', this.nameElement, this.nameElement.parentElement);
overlay.appendChild(this.nameElement); overlay.appendChild(this.nameElement);
} }