UNPKG

laya-coreui-es

Version:

laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改

22 lines (21 loc) 555 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PerfData = void 0; let DATANUM = 300; class PerfData { constructor(id, color, name, scale) { this.scale = 1.0; this.datas = new Array(DATANUM); this.datapos = 0; this.id = id; this.color = color; this.name = name; this.scale = scale; } addData(v) { this.datas[this.datapos] = v; this.datapos++; this.datapos %= DATANUM; } } exports.PerfData = PerfData;