Members
-
The max. uniforms until the batch is filled
Methods
-
Name Type Description batch
AggregateUniformBatch -
Creates an array for each uniform-name in an object.
Returns:
- the object created (the uniform buffer)
-
Finds a matching set of uniforms in the buffer.
-
Returns:
Type Description AggregateUniformsBatch -
Stores uniforms in the current batch, if possible.
If you want to override this, be sure to return beforehand if
super._put
returns false:_put(displayObject: PIXI.DisplayObject): boolean { if (!super._put(displayObject)) { return false; } // Your logic ... }
Name Type Description displayObject
PIXI.DisplayObject Returns:
Type Description boolean - whether uniforms can be buffered
-
Resets each array in the uniform buffer
Name Type Description buffer
object