Difference between revisions of "love.graphics.newSpriteBatch"
m |
m (Typo) |
||
Line 16: | Line 16: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | spriteBatch = love.graphics.newSpriteBatch( image, size, | + | spriteBatch = love.graphics.newSpriteBatch( image, size, usagehint ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
{{param|Image|image|The Image to use for the sprites.}} | {{param|Image|image|The Image to use for the sprites.}} | ||
{{param|number|size (1000)|The max number of sprites.}} | {{param|number|size (1000)|The max number of sprites.}} | ||
− | {{param|SpriteBatchUsage| | + | {{param|SpriteBatchUsage|usagehint ("dynamic")|The expected usage of the SpriteBatch.}} |
=== Returns === | === Returns === | ||
{{param|SpriteBatch|spriteBatch|The new SpriteBatch.}} | {{param|SpriteBatch|spriteBatch|The new SpriteBatch.}} |
Revision as of 03:15, 8 August 2013
Creates a new SpriteBatch object.
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! |
Contents
Function
Synopsis
spriteBatch = love.graphics.newSpriteBatch( image, size )
Arguments
Returns
SpriteBatch spriteBatch
- The new SpriteBatch.
Function
Available since LÖVE 0.8.0 |
This variant is not supported in earlier versions. |
Synopsis
spriteBatch = love.graphics.newSpriteBatch( image, size, usagehint )
Arguments
Image image
- The Image to use for the sprites.
number size (1000)
- The max number of sprites.
SpriteBatchUsage usagehint ("dynamic")
- The expected usage of the SpriteBatch.
Returns
SpriteBatch spriteBatch
- The new SpriteBatch.
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info