summaryrefslogtreecommitdiffstats
path: root/doc/classes/TileData.xml
blob: f9505124ef43cccb928f60cb31173717aacf1891 (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
<?xml version="1.0" encoding="UTF-8" ?>
<class name="TileData" inherits="Object" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../class.xsd">
	<brief_description>
		Settings for a single tile in a [TileSet].
	</brief_description>
	<description>
		[TileData] object represents a single tile in a [TileSet]. It is usually edited using the tileset editor, but it can be modified at runtime using [method TileMap._tile_data_runtime_update].
	</description>
	<tutorials>
	</tutorials>
	<methods>
		<method name="add_collision_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Adds a collision polygon to the tile on the given TileSet physics layer.
			</description>
		</method>
		<method name="add_occluder_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Adds an occlusion polygon to the tile on the TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="get_collision_polygon_one_way_margin" qualifiers="const">
			<return type="float" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<description>
				Returns the one-way margin (for one-way platforms) of the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="get_collision_polygon_points" qualifiers="const">
			<return type="PackedVector2Array" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<description>
				Returns the points of the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="get_collision_polygons_count" qualifiers="const">
			<return type="int" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Returns how many polygons the tile has for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="get_constant_angular_velocity" qualifiers="const">
			<return type="float" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Returns the constant angular velocity applied to objects colliding with this tile.
			</description>
		</method>
		<method name="get_constant_linear_velocity" qualifiers="const">
			<return type="Vector2" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Returns the constant linear velocity applied to objects colliding with this tile.
			</description>
		</method>
		<method name="get_custom_data" qualifiers="const">
			<return type="Variant" />
			<param index="0" name="layer_name" type="String" />
			<description>
				Returns the custom data value for custom data layer named [param layer_name].
			</description>
		</method>
		<method name="get_custom_data_by_layer_id" qualifiers="const">
			<return type="Variant" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Returns the custom data value for custom data layer with index [param layer_id].
			</description>
		</method>
		<method name="get_navigation_polygon" qualifiers="const">
			<return type="NavigationPolygon" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="flip_h" type="bool" default="false" />
			<param index="2" name="flip_v" type="bool" default="false" />
			<param index="3" name="transpose" type="bool" default="false" />
			<description>
				Returns the navigation polygon of the tile for the TileSet navigation layer with index [param layer_id].
				[param flip_h], [param flip_v], and [param transpose] allow transforming the returned polygon.
			</description>
		</method>
		<method name="get_occluder" qualifiers="const" deprecated="Use [method get_occluder_polygon] instead.">
			<return type="OccluderPolygon2D" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="flip_h" type="bool" default="false" />
			<param index="2" name="flip_v" type="bool" default="false" />
			<param index="3" name="transpose" type="bool" default="false" />
			<description>
				Returns the occluder polygon of the tile for the TileSet occlusion layer with index [param layer_id].
				[param flip_h], [param flip_v], and [param transpose] allow transforming the returned polygon.
			</description>
		</method>
		<method name="get_occluder_polygon" qualifiers="const">
			<return type="OccluderPolygon2D" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<param index="2" name="flip_h" type="bool" default="false" />
			<param index="3" name="flip_v" type="bool" default="false" />
			<param index="4" name="transpose" type="bool" default="false" />
			<description>
				Returns the occluder polygon at index [param polygon_index] from the TileSet occlusion layer with index [param layer_id].
				The [param flip_h], [param flip_v], and [param transpose] parameters can be [code]true[/code] to transform the returned polygon.
			</description>
		</method>
		<method name="get_occluder_polygons_count" qualifiers="const">
			<return type="int" />
			<param index="0" name="layer_id" type="int" />
			<description>
				Returns the number of occluder polygons of the tile in the TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="get_terrain_peering_bit" qualifiers="const">
			<return type="int" />
			<param index="0" name="peering_bit" type="int" enum="TileSet.CellNeighbor" />
			<description>
				Returns the tile's terrain bit for the given [param peering_bit] direction. To check that a direction is valid, use [method is_valid_terrain_peering_bit].
			</description>
		</method>
		<method name="is_collision_polygon_one_way" qualifiers="const">
			<return type="bool" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<description>
				Returns whether one-way collisions are enabled for the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="is_valid_terrain_peering_bit" qualifiers="const">
			<return type="bool" />
			<param index="0" name="peering_bit" type="int" enum="TileSet.CellNeighbor" />
			<description>
				Returns whether the given [param peering_bit] direction is valid for this tile.
			</description>
		</method>
		<method name="remove_collision_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<description>
				Removes the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="remove_occluder_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<description>
				Removes the polygon at index [param polygon_index] for TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="set_collision_polygon_one_way">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<param index="2" name="one_way" type="bool" />
			<description>
				Enables/disables one-way collisions on the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="set_collision_polygon_one_way_margin">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<param index="2" name="one_way_margin" type="float" />
			<description>
				Sets the one-way margin (for one-way platforms) of the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="set_collision_polygon_points">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<param index="2" name="polygon" type="PackedVector2Array" />
			<description>
				Sets the points of the polygon at index [param polygon_index] for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="set_collision_polygons_count">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygons_count" type="int" />
			<description>
				Sets the polygons count for TileSet physics layer with index [param layer_id].
			</description>
		</method>
		<method name="set_constant_angular_velocity">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="velocity" type="float" />
			<description>
				Sets the constant angular velocity. This does not rotate the tile. This angular velocity is applied to objects colliding with this tile.
			</description>
		</method>
		<method name="set_constant_linear_velocity">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="velocity" type="Vector2" />
			<description>
				Sets the constant linear velocity. This does not move the tile. This linear velocity is applied to objects colliding with this tile. This is useful to create conveyor belts.
			</description>
		</method>
		<method name="set_custom_data">
			<return type="void" />
			<param index="0" name="layer_name" type="String" />
			<param index="1" name="value" type="Variant" />
			<description>
				Sets the tile's custom data value for the TileSet custom data layer with name [param layer_name].
			</description>
		</method>
		<method name="set_custom_data_by_layer_id">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="value" type="Variant" />
			<description>
				Sets the tile's custom data value for the TileSet custom data layer with index [param layer_id].
			</description>
		</method>
		<method name="set_navigation_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="navigation_polygon" type="NavigationPolygon" />
			<description>
				Sets the navigation polygon for the TileSet navigation layer with index [param layer_id].
			</description>
		</method>
		<method name="set_occluder" deprecated="Use [method set_occluder_polygon] instead.">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="occluder_polygon" type="OccluderPolygon2D" />
			<description>
				Sets the occluder for the TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="set_occluder_polygon">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygon_index" type="int" />
			<param index="2" name="polygon" type="OccluderPolygon2D" />
			<description>
				Sets the occluder for polygon with index [param polygon_index] in the TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="set_occluder_polygons_count">
			<return type="void" />
			<param index="0" name="layer_id" type="int" />
			<param index="1" name="polygons_count" type="int" />
			<description>
				Sets the occluder polygon count in the TileSet occlusion layer with index [param layer_id].
			</description>
		</method>
		<method name="set_terrain_peering_bit">
			<return type="void" />
			<param index="0" name="peering_bit" type="int" enum="TileSet.CellNeighbor" />
			<param index="1" name="terrain" type="int" />
			<description>
				Sets the tile's terrain bit for the given [param peering_bit] direction. To check that a direction is valid, use [method is_valid_terrain_peering_bit].
			</description>
		</method>
	</methods>
	<members>
		<member name="flip_h" type="bool" setter="set_flip_h" getter="get_flip_h" default="false">
			If [code]true[/code], the tile will have its texture flipped horizontally.
		</member>
		<member name="flip_v" type="bool" setter="set_flip_v" getter="get_flip_v" default="false">
			If [code]true[/code], the tile will have its texture flipped vertically.
		</member>
		<member name="material" type="Material" setter="set_material" getter="get_material">
			The [Material] to use for this [TileData]. This can be a [CanvasItemMaterial] to use the default shader, or a [ShaderMaterial] to use a custom shader.
		</member>
		<member name="modulate" type="Color" setter="set_modulate" getter="get_modulate" default="Color(1, 1, 1, 1)" keywords="color, colour">
			Color modulation of the tile.
		</member>
		<member name="probability" type="float" setter="set_probability" getter="get_probability" default="1.0">
			Relative probability of this tile being selected when drawing a pattern of random tiles.
		</member>
		<member name="terrain" type="int" setter="set_terrain" getter="get_terrain" default="-1">
			ID of the terrain from the terrain set that the tile uses.
		</member>
		<member name="terrain_set" type="int" setter="set_terrain_set" getter="get_terrain_set" default="-1">
			ID of the terrain set that the tile uses.
		</member>
		<member name="texture_origin" type="Vector2i" setter="set_texture_origin" getter="get_texture_origin" default="Vector2i(0, 0)">
			Offsets the position of where the tile is drawn.
		</member>
		<member name="transpose" type="bool" setter="set_transpose" getter="get_transpose" default="false">
			If [code]true[/code], the tile will display transposed, i.e. with horizontal and vertical texture UVs swapped.
		</member>
		<member name="y_sort_origin" type="int" setter="set_y_sort_origin" getter="get_y_sort_origin" default="0">
			Vertical point of the tile used for determining y-sorted order.
		</member>
		<member name="z_index" type="int" setter="set_z_index" getter="get_z_index" default="0">
			Ordering index of this tile, relative to [TileMap].
		</member>
	</members>
	<signals>
		<signal name="changed">
			<description>
				Emitted when any of the properties are changed.
			</description>
		</signal>
	</signals>
</class>