Difference between revisions of "TileMap:setTile"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Sets the index of the tile. The tile indices are starting from 1. | Sets the index of the tile. The tile indices are starting from 1. | ||
− | < | + | <syntaxhighlight lang="lua"> |
TileMap:setTile(x,y,tx,ty,flip,color,alpha) | TileMap:setTile(x,y,tx,ty,flip,color,alpha) | ||
</source> | </source> |
Revision as of 14:31, 13 July 2023
Available since: Gideros 2011.6
Class: TileMap
Description
Sets the index of the tile. The tile indices are starting from 1. <syntaxhighlight lang="lua"> TileMap:setTile(x,y,tx,ty,flip,color,alpha) </source>
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