PIXI. SpriteBatch

new SpriteBatch(texture)

The SpriteBatch class is a really fast version of the DisplayObjectContainer
built solely for speed, so use when you need a lot of sprites or particles.
And it's extremely easy to use :

var container = new PIXI.SpriteBatch();

for(var i = 0; i < 100; i++)
{
var sprite = new PIXI.Sprite.fromImage("myImage.png");
container.addChild(sprite);
}
And here you have a hundred sprites that will be renderer at the speed of light

Parameters:
Name Type Description
texture PIXI.Texture

-

Source - pixi/display/SpriteBatch.js, line 5
Phaser Copyright © 2012-2016 Photon Storm Ltd.
Documentation generated by JSDoc 3.5.5 on Fri Jun 29 2018 14:26:30 GMT+0200 (W. Europe Summer Time) using the DocStrap template.