UNPKG

laya-coreui-es

Version:

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

18 lines (17 loc) 425 B
let DATANUM = 300; export 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; } }