Difference between revisions of "TexturePack.new"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Creates a new `TexturePack` object. This function creates the texture pack at runtime.<br /> <b...")
 
Line 6: Line 6:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= TexturePack.new(texturespaddingfilteringoptions,)
+
TexturePack.new(textures,padding,filtering,options)
 
</source>
 
</source>
'''textures:''' (table) file names of textures. ''''''<br/>
+
'''textures''': (table) file names of textures. ''''''<br/>
'''padding:''' (number) the spacing between textures in pixels ''''''<br/>
+
'''padding''': (number) the spacing between textures in pixels ''''''<br/>
'''filtering:''' (boolean, default = false) Whether or not the texture is filtered. ''''''<br/>
+
'''filtering''': (boolean, default = false) Whether or not the texture is filtered. ''''''<br/>
'''options:''' (table, optional) A table that specifies optional paramaters. Currently, &quot;transparentColor&quot; and &quot;format&quot fields are supported. ''''''<br/>
+
'''options''': (table, optional) A table that specifies optional paramaters. Currently, &quot;transparentColor&quot; and &quot;format&quot fields are supported. ''''''<br/>
 
__NOTOC__
 
__NOTOC__
 
'''Available since:''' Gideros 2011.6<br/>
 
'''Available since:''' Gideros 2011.6<br/>
Line 19: Line 19:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= TexturePack.new(txtfileimagefilefilteringoptions,)
+
TexturePack.new(txtfile,imagefile,filtering,options)
 
</source>
 
</source>
'''txtfile:''' (string)  ''''''<br/>
+
'''txtfile''': (string)  ''''''<br/>
'''imagefile:''' (string)  ''''''<br/>
+
'''imagefile''': (string)  ''''''<br/>
'''filtering:''' (boolean, default = false) Whether or not the texture is filtered. ''''''<br/>
+
'''filtering''': (boolean, default = false) Whether or not the texture is filtered. ''''''<br/>
'''options:''' (table, optional) A table that specifies optional paramaters. Currently, &quot;transparentColor&quot; and &quot;format&quot fields are supported. ''''''<br/>
+
'''options''': (table, optional) A table that specifies optional paramaters. Currently, &quot;transparentColor&quot; and &quot;format&quot fields are supported. ''''''<br/>

Revision as of 11:16, 23 August 2018

Available since: Gideros 2011.6

Description


Creates a new `TexturePack` object. This function creates the texture pack at runtime.

 TexturePack.new(textures,padding,filtering,options)

'textures: (table) file names of textures. '
'padding: (number) the spacing between textures in pixels '
'filtering: (boolean, default = false) Whether or not the texture is filtered. '
'options: (table, optional) A table that specifies optional paramaters. Currently, "transparentColor" and "format&quot fields are supported. '

Available since: Gideros 2011.6

Description


Creates a new `TexturePack` object. This function loads the pre-packed texture atlas created by "Gideros Texture Packer" tool.

 TexturePack.new(txtfile,imagefile,filtering,options)

'txtfile: (string) '
'imagefile: (string) '
'filtering: (boolean, default = false) Whether or not the texture is filtered. '
'options: (table, optional) A table that specifies optional paramaters. Currently, "transparentColor" and "format&quot fields are supported. '