UNPKG

laya-coreui-es

Version:

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

27 lines (26 loc) 625 B
import { Context } from "../../resource/Context"; import { Texture } from "../../resource/Texture"; /** * 根据坐标集合绘制多个贴图 */ export declare class DrawTexturesCmd { static ID: string; /** * 纹理。 */ texture: Texture; /** * 绘制次数和坐标。 */ pos: any[]; /**@private */ static create(texture: Texture, pos: any[]): DrawTexturesCmd; /** * 回收到对象池 */ recover(): void; /**@private */ run(context: Context, gx: number, gy: number): void; /**@private */ get cmdID(): string; }