-->

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.4.0 on Fri Aug 26 2016 01:16:21 GMT+0100 (BST) using the DocStrap template.