mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 01:24:48 +00:00
15 lines
353 B
TypeScript
15 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;
|
||
|
}
|