summaryrefslogtreecommitdiff
path: root/doc/classes/TileMap.xml
blob: 4ac5718e04031562506a5e7281e94f0648787eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<?xml version="1.0" encoding="UTF-8" ?>
<class name="TileMap" inherits="Node2D" version="4.0">
	<brief_description>
		Node for 2D tile-based maps.
	</brief_description>
	<description>
		Node for 2D tile-based maps. Tilemaps use a [TileSet] which contain a list of tiles which are used to create grid-based maps. A TileMap may have several layers, layouting tiles on top of each other.
	</description>
	<tutorials>
		<link title="Using Tilemaps">https://docs.godotengine.org/en/latest/tutorials/2d/using_tilemaps.html</link>
		<link title="2D Platformer Demo">https://godotengine.org/asset-library/asset/120</link>
		<link title="2D Isometric Demo">https://godotengine.org/asset-library/asset/112</link>
		<link title="2D Hexagonal Demo">https://godotengine.org/asset-library/asset/111</link>
		<link title="2D Navigation Astar Demo">https://godotengine.org/asset-library/asset/519</link>
		<link title="2D Role Playing Game Demo">https://godotengine.org/asset-library/asset/520</link>
		<link title="2D Kinematic Character Demo">https://godotengine.org/asset-library/asset/113</link>
	</tutorials>
	<methods>
		<method name="add_layer">
			<return type="void" />
			<argument index="0" name="to_position" type="int" />
			<description>
				Adds a layer at the given position [code]to_position[/code] in the array. If [code]to_position[/code] is -1, adds it at the end of the array.
			</description>
		</method>
		<method name="clear">
			<return type="void" />
			<description>
				Clears all cells.
			</description>
		</method>
		<method name="clear_layer">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<description>
				Clears all cells on the given layer.
			</description>
		</method>
		<method name="fix_invalid_tiles">
			<return type="void" />
			<description>
				Clears cells that do not exist in the tileset.
			</description>
		</method>
		<method name="get_cell_alternative_tile" qualifiers="const">
			<return type="int" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="coords" type="Vector2i" />
			<argument index="2" name="use_proxies" type="bool" />
			<description>
				Returns the tile alternative ID of the cell on layer [code]layer[/code] at [code]coords[/code]. If [code]use_proxies[/code] is [code]false[/code], ignores the [TileSet]'s tile proxies, returning the raw alternative identifier. See [method TileSet.map_tile_proxy].
			</description>
		</method>
		<method name="get_cell_atlas_coords" qualifiers="const">
			<return type="Vector2i" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="coords" type="Vector2i" />
			<argument index="2" name="use_proxies" type="bool" />
			<description>
				Returns the tile atlas coordinates ID of the cell on layer [code]layer[/code] at coordinates [code]coords[/code]. If [code]use_proxies[/code] is [code]false[/code], ignores the [TileSet]'s tile proxies, returning the raw alternative identifier. See [method TileSet.map_tile_proxy].
			</description>
		</method>
		<method name="get_cell_source_id" qualifiers="const">
			<return type="int" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="coords" type="Vector2i" />
			<argument index="2" name="use_proxies" type="bool" />
			<description>
				Returns the tile source ID of the cell on layer [code]layer[/code] at coordinates [code]coords[/code]. If [code]use_proxies[/code] is [code]false[/code], ignores the [TileSet]'s tile proxies, returning the raw alternative identifier. See [method TileSet.map_tile_proxy].
			</description>
		</method>
		<method name="get_coords_for_body_rid">
			<return type="Vector2i" />
			<argument index="0" name="body" type="RID" />
			<description>
				Returns the coodinates of the tile for given physics body RID. Such RID can be retrieved from [method KinematicCollision2D.get_collider_rid], when colliding with a tile.
			</description>
		</method>
		<method name="get_layer_modulate" qualifiers="const">
			<return type="Color" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns a TileMap layer's modulate.
			</description>
		</method>
		<method name="get_layer_name" qualifiers="const">
			<return type="String" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns a TileMap layer's name.
			</description>
		</method>
		<method name="get_layer_y_sort_origin" qualifiers="const">
			<return type="int" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns a TileMap layer's Y sort origin.
			</description>
		</method>
		<method name="get_layer_z_index" qualifiers="const">
			<return type="int" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns a TileMap layer's Z-index value.
			</description>
		</method>
		<method name="get_layers_count" qualifiers="const">
			<return type="int" />
			<description>
			</description>
		</method>
		<method name="get_neighbor_cell" qualifiers="const">
			<return type="Vector2i" />
			<argument index="0" name="coords" type="Vector2i" />
			<argument index="1" name="neighbor" type="int" enum="TileSet.CellNeighbor" />
			<description>
				Returns the neighboring cell to the one at coordinates [code]coords[/code], indentified by the [code]neighbor[/code] direction. This method takes into account the different layouts a TileMap can take.
			</description>
		</method>
		<method name="get_pattern">
			<return type="TileMapPattern" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="coords_array" type="Vector2i[]" />
			<description>
				Creates a new [TileMapPattern] from the given layer and set of cells.
			</description>
		</method>
		<method name="get_surrounding_tiles">
			<return type="Vector2i[]" />
			<argument index="0" name="coords" type="Vector2i" />
			<description>
				Returns the list of all neighbourings cells to the one at [code]coords[/code]
			</description>
		</method>
		<method name="get_used_cells" qualifiers="const">
			<return type="Vector2i[]" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns a [Vector2] array with the positions of all cells containing a tile in the given layer. A cell is considered empty if its source identifier equals -1, its atlas coordinates identifiers is [code]Vector2(-1, -1)[/code] and its alternative identifier is -1.
			</description>
		</method>
		<method name="get_used_rect">
			<return type="Rect2" />
			<description>
				Returns a rectangle enclosing the used (non-empty) tiles of the map, including all layers.
			</description>
		</method>
		<method name="is_layer_enabled" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns if a layer is enabled.
			</description>
		</method>
		<method name="is_layer_y_sort_enabled" qualifiers="const">
			<return type="bool" />
			<argument index="0" name="layer" type="int" />
			<description>
				Returns if a layer Y-sorts its tiles.
			</description>
		</method>
		<method name="map_pattern">
			<return type="Vector2i" />
			<argument index="0" name="position_in_tilemap" type="Vector2i" />
			<argument index="1" name="coords_in_pattern" type="Vector2i" />
			<argument index="2" name="pattern" type="TileMapPattern" />
			<description>
				Returns for the given coodinate [code]coords_in_pattern[/code] in a [TileMapPattern] the corresponding cell coordinates if the pattern was pasted at the [code]position_in_tilemap[/code] coordinates (see [method set_pattern]). This mapping is required as in half-offset tile shapes, the mapping might not work by calculating [code]position_in_tile_map + coords_in_pattern[/code]
			</description>
		</method>
		<method name="map_to_world" qualifiers="const">
			<return type="Vector2" />
			<argument index="0" name="map_position" type="Vector2i" />
			<description>
				Returns the local position corresponding to the given tilemap (grid-based) coordinates.
			</description>
		</method>
		<method name="move_layer">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="to_position" type="int" />
			<description>
				Moves the layer at index [code]layer_index[/code] to the given position [code]to_position[/code] in the array.
			</description>
		</method>
		<method name="remove_layer">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<description>
				Moves the layer at index [code]layer_index[/code] to the given position [code]to_position[/code] in the array.
			</description>
		</method>
		<method name="set_cell">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="coords" type="Vector2i" />
			<argument index="2" name="source_id" type="int" default="-1" />
			<argument index="3" name="atlas_coords" type="Vector2i" default="Vector2i(-1, -1)" />
			<argument index="4" name="alternative_tile" type="int" default="-1" />
			<description>
				Sets the tile indentifiers for the cell on layer [code]layer[/code] at coordinates [code]coords[/code]. Each tile of the [TileSet] is identified using three parts:
				- The source indentifier [code]source_id[/code] identifies a [TileSetSource] identifier. See [method TileSet.set_source_id],
				- The atlas coordinates identifier [code]atlas_coords[/code] identifies a tile coordinates in the atlas (if the source is a [TileSetAtlasSource]. For [TileSetScenesCollectionSource] it should be 0),
				- The alternative tile identifier [code]alternative_tile[/code] identifies a tile alternative the source is a [TileSetAtlasSource], and the scene for a [TileSetScenesCollectionSource].
			</description>
		</method>
		<method name="set_cells_from_surrounding_terrains">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="cells" type="Vector2i[]" />
			<argument index="2" name="terrain_set" type="int" />
			<argument index="3" name="ignore_empty_terrains" type="bool" default="true" />
			<description>
				Updates all the cells in the [code]cells[/code] coordinates array and replace them by tiles that matches the surrounding cells terrains. Only cells form the given [code]terrain_set[/code] are considered.
				If [code]ignore_empty_terrains[/code] is true, zones with no terrain defined are ignored to select the tiles.
			</description>
		</method>
		<method name="set_layer_enabled">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="enabled" type="bool" />
			<description>
				Enables or disables the layer [code]layer[/code]. A disabled layer is not processed at all (no rendering, no physics, etc...).
			</description>
		</method>
		<method name="set_layer_modulate">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="enabled" type="Color" />
			<description>
				Sets a layer's color. It will be multiplied by tile's color and TileMap's modulate.
			</description>
		</method>
		<method name="set_layer_name">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="name" type="String" />
			<description>
				Sets a layer's name. This is mostly useful in the editor.
			</description>
		</method>
		<method name="set_layer_y_sort_enabled">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="y_sort_enabled" type="bool" />
			<description>
				Enables or disables a layer's Y-sorting. If a layer is Y-sorted, the layer will behave as a CanvasItem node where each of its tile gets Y-sorted.
				Y-sorted layers should usually be on different Z-index values than not Y-sorted layers, otherwise, each of those layer will be Y-sorted as whole with the Y-sorted one. This is usually an undesired behvaior.
			</description>
		</method>
		<method name="set_layer_y_sort_origin">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="y_sort_origin" type="int" />
			<description>
				Sets a layer's Y-sort origin value. This Y-sort origin value is added to each tile's Y-sort origin value.
				This allows, for example, to fake a different height level on each layer. This can be useful for top-down view games.
			</description>
		</method>
		<method name="set_layer_z_index">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="z_index" type="int" />
			<description>
				Sets a layers Z-index value. This Z-index is added to each tile's Z-index value.
			</description>
		</method>
		<method name="set_pattern">
			<return type="void" />
			<argument index="0" name="layer" type="int" />
			<argument index="1" name="position" type="Vector2i" />
			<argument index="2" name="pattern" type="TileMapPattern" />
			<description>
				Paste the given [TileMapPattern] at the given [code]position[/code] and [code]layer[/code] in the tile map.
			</description>
		</method>
		<method name="world_to_map" qualifiers="const">
			<return type="Vector2i" />
			<argument index="0" name="world_position" type="Vector2" />
			<description>
				Returns the tilemap (grid-based) coordinates corresponding to the given local position.
			</description>
		</method>
	</methods>
	<members>
		<member name="cell_quadrant_size" type="int" setter="set_quadrant_size" getter="get_quadrant_size" default="16">
			The TileMap's quadrant size. Optimizes drawing by batching, using chunks of this size.
		</member>
		<member name="collision_animatable" type="bool" setter="set_collision_animatable" getter="is_collision_animatable" default="false">
			If enabled, the TileMap will see its collisions synced to the physics tick and change its collision type from static to kinematic. This is required to create TileMap-based moving platform.
			[b]Note:[/b] Enabling [code]collision_animatable[/code] may have a small performance impact, only do it if the TileMap is moving and has colliding tiles.
		</member>
		<member name="collision_visibility_mode" type="int" setter="set_collision_visibility_mode" getter="get_collision_visibility_mode" enum="TileMap.VisibilityMode" default="0">
			Show or hide the TileMap's collision shapes. If set to [code]VISIBILITY_MODE_DEFAULT[/code], this depends on the show collision debug settings.
		</member>
		<member name="navigation_visibility_mode" type="int" setter="set_navigation_visibility_mode" getter="get_navigation_visibility_mode" enum="TileMap.VisibilityMode" default="0">
			Show or hide the TileMap's collision shapes. If set to [code]VISIBILITY_MODE_DEFAULT[/code], this depends on the show navigation debug settings.
		</member>
		<member name="tile_set" type="TileSet" setter="set_tileset" getter="get_tileset">
			The assigned [TileSet].
		</member>
	</members>
	<signals>
		<signal name="changed">
			<description>
				Emitted when the [TileSet] of this TileMap changes.
			</description>
		</signal>
	</signals>
	<constants>
		<constant name="VISIBILITY_MODE_DEFAULT" value="0" enum="VisibilityMode">
			Use the debug settings to determine visibility.
		</constant>
		<constant name="VISIBILITY_MODE_FORCE_HIDE" value="2" enum="VisibilityMode">
			Always hide.
		</constant>
		<constant name="VISIBILITY_MODE_FORCE_SHOW" value="1" enum="VisibilityMode">
			Always show.
		</constant>
	</constants>
</class>