Difference between revisions of "TileMap.new"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === <br /> Creates a new `TileMap` instance.<br /> <br /> <source lang="lua"> = TileMap.new(widthheighttex...")
 
Line 6: Line 6:
 
<br />
 
<br />
 
<source lang="lua">
 
<source lang="lua">
= TileMap.new(widthheighttexturetilewidthtileheightspacingxspacingymarginxmarginydisplaywidthdisplayheight,)
+
TileMap.new(width,height,texture,tilewidth,tileheight,spacingx,spacingy,marginx,marginy,displaywidth,displayheight)
 
</source>
 
</source>
'''width:''' (number) The width of the map in tiles ''''''<br/>
+
'''width''': (number) The width of the map in tiles ''''''<br/>
'''height:''' (number) The height of the map in tiles ''''''<br/>
+
'''height''': (number) The height of the map in tiles ''''''<br/>
'''texture:''' (TextureBase) The texture used in rendering tile map ''''''<br/>
+
'''texture''': (TextureBase) The texture used in rendering tile map ''''''<br/>
'''tilewidth:''' (number) The width of a tile in pixels ''''''<br/>
+
'''tilewidth''': (number) The width of a tile in pixels ''''''<br/>
'''tileheight:''' (number) The height of a tile in pixels ''''''<br/>
+
'''tileheight''': (number) The height of a tile in pixels ''''''<br/>
'''spacingx:''' (number, default = 0) The x-spacing in pixels between the tiles in this tileset ''''''<br/>
+
'''spacingx''': (number, default = 0) The x-spacing in pixels between the tiles in this tileset ''''''<br/>
'''spacingy:''' (number, default = 0) The y-spacing in pixels between the tiles in this tileset ''''''<br/>
+
'''spacingy''': (number, default = 0) The y-spacing in pixels between the tiles in this tileset ''''''<br/>
'''marginx:''' (number, default = 0) The x-margin from the top-left of the texture ''''''<br/>
+
'''marginx''': (number, default = 0) The x-margin from the top-left of the texture ''''''<br/>
'''marginy:''' (number, default = 0) The y-margin from the top-left of the texture ''''''<br/>
+
'''marginy''': (number, default = 0) The y-margin from the top-left of the texture ''''''<br/>
'''displaywidth:''' (number, default = tilewidth) The display width of a tile in pixels ''''''<br/>
+
'''displaywidth''': (number, default = tilewidth) The display width of a tile in pixels ''''''<br/>
'''displayheight:''' (number, default = tileheight) The display height of a tile in pixels ''''''<br/>
+
'''displayheight''': (number, default = tileheight) The display height of a tile in pixels ''''''<br/>

Revision as of 11:20, 23 August 2018

Available since: Gideros 2011.6

Description


Creates a new `TileMap` instance.

 TileMap.new(width,height,texture,tilewidth,tileheight,spacingx,spacingy,marginx,marginy,displaywidth,displayheight)

'width: (number) The width of the map in tiles '
'height: (number) The height of the map in tiles '
'texture: (TextureBase) The texture used in rendering tile map '
'tilewidth: (number) The width of a tile in pixels '
'tileheight: (number) The height of a tile in pixels '
'spacingx: (number, default = 0) The x-spacing in pixels between the tiles in this tileset '
'spacingy: (number, default = 0) The y-spacing in pixels between the tiles in this tileset '
'marginx: (number, default = 0) The x-margin from the top-left of the texture '
'marginy: (number, default = 0) The y-margin from the top-left of the texture '
'displaywidth: (number, default = tilewidth) The display width of a tile in pixels '
'displayheight: (number, default = tileheight) The display height of a tile in pixels '