Difference between revisions of "TexturePack:getTextureRegion"

From GiderosMobile
Line 2: Line 2:
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
 
=== Description ===
 
=== Description ===
<br />
+
<translate><br />
 
Returns the texture region of texture pack.<br />
 
Returns the texture region of texture pack.<br />
<br />
+
<br /></translate>
 
<source lang="lua">
 
<source lang="lua">
 
(TextureRegion) = TexturePack:getTextureRegion(texturename)
 
(TextureRegion) = TexturePack:getTextureRegion(texturename)
 
</source>
 
</source>
 
=== Parameters ===
 
=== Parameters ===
'''texturename''': (string) <br/>
+
'''texturename''': (string) <translate></translate> <br/>
 
=== Return values ===
 
=== Return values ===
'''Returns''' (TextureRegion) TextureRegion by specified name<br/>
+
'''Returns''' (TextureRegion) <translate>TextureRegion by specified name</translate><br/>
 
=== Examples ===
 
=== Examples ===
 
'''Example'''<br/>
 
'''Example'''<br/>
<source lang="lua">local pack = TexturePack.new({&quot;gfx/1.png&quot;, &quot;gfx/2.png&quot;, &quot;gfx/3.png&quot;, &quot;gfx/4.png&quot;})<br />
+
<source lang="lua">local pack = TexturePack.new({&quot;gfx/1.png&quot;, &quot;gfx/2.png&quot;, &quot;gfx/3.png&quot;, &quot;gfx/4.png&quot;})
<br />
+
 
local region1 = pack:getTextureRegion(&quot;gfx/1.png&quot;)<br />
+
local region1 = pack:getTextureRegion(&quot;gfx/1.png&quot;)
local region2 = pack:getTextureRegion(&quot;gfx/2.png&quot;)<br />
+
local region2 = pack:getTextureRegion(&quot;gfx/2.png&quot;)
local region3 = pack:getTextureRegion(&quot;gfx/3.png&quot;)<br />
+
local region3 = pack:getTextureRegion(&quot;gfx/3.png&quot;)
local region4 = pack:getTextureRegion(&quot;gfx/4.png&quot;)<br /></source>
+
local region4 = pack:getTextureRegion(&quot;gfx/4.png&quot;)</source>

Revision as of 14:34, 23 August 2018

Available since: Gideros 2011.6

Description


Returns the texture region of texture pack.

(TextureRegion) = TexturePack:getTextureRegion(texturename)

Parameters

texturename: (string)

Return values

Returns (TextureRegion) TextureRegion by specified name

Examples

Example

local pack = TexturePack.new({&quot;gfx/1.png&quot;, &quot;gfx/2.png&quot;, &quot;gfx/3.png&quot;, &quot;gfx/4.png&quot;})

local region1 = pack:getTextureRegion(&quot;gfx/1.png&quot;)
local region2 = pack:getTextureRegion(&quot;gfx/2.png&quot;)
local region3 = pack:getTextureRegion(&quot;gfx/3.png&quot;)
local region4 = pack:getTextureRegion(&quot;gfx/4.png&quot;)