improve fps display

This commit is contained in:
LabyStudio
2022-02-05 17:09:15 +01:00
parent e1c5ccfa89
commit 0d6c545030
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -28,12 +28,12 @@ window.GameWindow = class {
this.statsFps = new Stats()
this.statsFps.showPanel(0);
this.statsFps.domElement.style.cssText = 'position:absolute;top:0px;right:80px;float:right';
this.wrapper.appendChild(this.statsFps.dom);
//this.wrapper.appendChild(this.statsFps.dom);
this.statsMs = new Stats()
this.statsMs.showPanel(1);
this.statsMs.domElement.style.cssText = 'position:absolute;top:0px;right:160px;float:right';
this.wrapper.appendChild(this.statsMs.dom);
//this.wrapper.appendChild(this.statsMs.dom);
// On resize
let scope = this;