mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 17:16:03 +00:00
14 lines
353 B
TypeScript
14 lines
353 B
TypeScript
export default class BatchManager {
|
|
renderer: any;
|
|
currentBatch: any;
|
|
drawImageBatch: any;
|
|
singleTextureBatch: any;
|
|
gl: any;
|
|
constructor(renderer: any, batchSize: any);
|
|
init(): void;
|
|
start(): void;
|
|
stop(): void;
|
|
setBatch(newBatch: any): boolean;
|
|
add(source: any, blendMode: any): void;
|
|
destroy(): void;
|
|
}
|