Difference between revisions of "TileMap:setTile"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
=== Description === | === Description === | ||
− | <br /> | + | <translate><br /> |
Sets the index of the tile. The tile indices are starting from 1.<br /> | Sets the index of the tile. The tile indices are starting from 1.<br /> | ||
− | <br /> | + | <br /></translate> |
<source lang="lua"> | <source lang="lua"> | ||
TileMap:setTile(x,y,tx,ty,flip,color,alpha) | TileMap:setTile(x,y,tx,ty,flip,color,alpha) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''x''': (number) The x-position of tile <br/> | + | '''x''': (number) <translate>The x-position of tile</translate> <br/> |
− | '''y''': (number) The y-position of tile <br/> | + | '''y''': (number) <translate>The y-position of tile</translate> <br/> |
− | '''tx''': (number) The x-index of the tile <br/> | + | '''tx''': (number) <translate>The x-index of the tile</translate> <br/> |
− | '''ty''': (number) The y-index of the tile <br/> | + | '''ty''': (number) <translate>The y-index of the tile</translate> <br/> |
− | '''flip''': (number, default = 0) flip flag of tile. Can be combination of TileMap.FLIP_HORIZONTAL, TileMap.FLIP_VERTICAL and TileMap.FLIP_DIAGONAL <br/> | + | '''flip''': (number, default = 0) <translate>flip flag of tile. Can be combination of TileMap.FLIP_HORIZONTAL, TileMap.FLIP_VERTICAL and TileMap.FLIP_DIAGONAL</translate> <br/> |
− | '''color''': (number) Color tint of the tile, default to white (0xFFFFFF) '''optional'''<br/> | + | '''color''': (number) <translate>Color tint of the tile, default to white (0xFFFFFF)</translate> '''optional'''<br/> |
− | '''alpha''': (number) Alpha tint of the tile, default to opaque (1.0) '''optional'''<br/> | + | '''alpha''': (number) <translate>Alpha tint of the tile, default to opaque (1.0)</translate> '''optional'''<br/> |
Revision as of 13:48, 23 August 2018
Available since: Gideros 2011.6
Description
Sets the index of the tile. The tile indices are starting from 1.
TileMap:setTile(x,y,tx,ty,flip,color,alpha)
Parameters
x: (number) The x-position of tile
y: (number) The y-position of tile
tx: (number) The x-index of the tile
ty: (number) The y-index of the tile
flip: (number, default = 0) flip flag of tile. Can be combination of TileMap.FLIP_HORIZONTAL, TileMap.FLIP_VERTICAL and TileMap.FLIP_DIAGONAL
color: (number) Color tint of the tile, default to white (0xFFFFFF) optional
alpha: (number) Alpha tint of the tile, default to opaque (1.0) optional