ソースを参照

minor change in GLStatsJS

master
Palash Bansal 1年前
コミット
339c21547e
コミッターのメールアドレスに関連付けられたアカウントが存在しません
1個のファイルの変更4行の追加2行の削除
  1. 4
    2
      src/utils/GLStatsJS.ts

+ 4
- 2
src/utils/GLStatsJS.ts ファイルの表示

@@ -1,9 +1,11 @@
import Stats from 'stats.js'

export class GLStatsJS {
private _stats: Stats = new Stats()
protected _stats: Stats = new Stats()
protected _container: HTMLElement

constructor(private _container: HTMLElement) {
constructor(container: HTMLElement) {
this._container = container
this._stats.dom.id = 'stats-js'
this._stats.dom.style.position = 'absolute'
this._stats.dom.style.left = 'unset'

読み込み中…
キャンセル
保存