Difference between revisions of "TileMap:getTile"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Returns the index of the tile. The tile indices are starting from 1.
 
Returns the index of the tile. The tile indices are starting from 1.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number), (number), (number), (number), (number) = TileMap:getTile(x,y)
 
(number), (number), (number), (number), (number) = TileMap:getTile(x,y)
</source>
+
</syntaxhighlight>
  
 
=== Parameters ===
 
=== Parameters ===

Latest revision as of 15:33, 13 July 2023

Available since: Gideros 2011.6
Class: TileMap

Description

Returns the index of the tile. The tile indices are starting from 1.

(number), (number), (number), (number), (number) = TileMap:getTile(x,y)

Parameters

x: (number) the x-position of tile
y: (number) the y-position of tile

Return values

Returns (number) x tile position of texture or nil if tile is not set
Returns (number) y tile position of texture or nil if tile is not set
Returns (number) flip flag (TileMap.FLIP_DIAGONAL, TileMap.FLIP_HORIZONTAL, TileMap.FLIP_VERTICAL) of tile or nil if tile is not set
Returns (number) color tint of the tile
Returns (number) alpha tint of the tile