Difference between revisions of "TileMap:setTexture"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
Line 5: Line 5:
 
=== Description ===
 
=== Description ===
 
Changes the tile texture/atlas used by the tilemap.
 
Changes the tile texture/atlas used by the tilemap.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
TileMap:setTexture(texture,tilewidth,tileheight,spacingx,spacingy,marginx,marginy)
 
TileMap:setTexture(texture,tilewidth,tileheight,spacingx,spacingy,marginx,marginy)
 
</source>
 
</source>

Revision as of 15:31, 13 July 2023

Available since: Gideros 2018.2
Class: TileMap

Description

Changes the tile texture/atlas used by the tilemap. <syntaxhighlight lang="lua"> TileMap:setTexture(texture,tilewidth,tileheight,spacingx,spacingy,marginx,marginy) </source>

Parameters

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