#18 动态图集用于优化drawcall

This commit is contained in:
yhh
2020-08-14 15:46:19 +08:00
parent 4012a9f6d1
commit 89d05726ac
12 changed files with 1507 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
module es {
/**
* 类中用于存储矩形值的矩形封装器
* ID参数需要连接矩形和原来插入的矩形
*/
export class IntegerRectangle extends Rectangle{
public id: number;
}
}