Difference between revisions of "love.graphics.newSpriteBatch"

m (...really, self?)
m (not sure how ugly having this template for all these functions but it's probably a good idea)
Line 1: Line 1:
 
Creates a new SpriteBatch object.
 
Creates a new SpriteBatch object.
 +
{{newobjectnotice}}
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===

Revision as of 18:24, 27 January 2012

Creates a new SpriteBatch object.

O.png This function can be slow if it is called repeatedly, such as from love.update or love.draw. If you need to use a specific resource often, create it once and store it somewhere it can be reused!  



Function

Synopsis

spriteBatch = love.graphics.newSpriteBatch( image, size )

Arguments

Image image
The Image to use for the sprites.
number size (1000)
The max number of sprites.

Returns

SpriteBatch spriteBatch
The new SpriteBatch.

See Also


Other Languages