class_tilemap.rst 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125
  1. :github_url: hide
  2. .. meta::
  3. :keywords: gridmap
  4. .. DO NOT EDIT THIS FILE!!!
  5. .. Generated automatically from Godot engine sources.
  6. .. Generator: https://github.com/godotengine/godot/tree/master/doc/tools/make_rst.py.
  7. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/TileMap.xml.
  8. .. _class_TileMap:
  9. TileMap
  10. =======
  11. **Deprecated:** Use multiple :ref:`TileMapLayer<class_TileMapLayer>` nodes instead. To convert a TileMap to a set of TileMapLayer nodes, open the TileMap bottom panel with the node selected, click the toolbox icon in the top-right corner and choose 'Extract TileMap layers as individual TileMapLayer nodes'.
  12. **Inherits:** :ref:`Node2D<class_Node2D>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  13. Node for 2D tile-based maps.
  14. .. rst-class:: classref-introduction-group
  15. Description
  16. -----------
  17. Node for 2D tile-based maps. Tilemaps use a :ref:`TileSet<class_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.
  18. For performance reasons, all TileMap updates are batched at the end of a frame. Notably, this means that scene tiles from a :ref:`TileSetScenesCollectionSource<class_TileSetScenesCollectionSource>` may be initialized after their parent. This is only queued when inside the scene tree.
  19. To force an update earlier on, call :ref:`update_internals()<class_TileMap_method_update_internals>`.
  20. \ **Note:** For performance and compatibility reasons, the coordinates serialized by **TileMap** are limited to 16-bit signed integers, i.e. the range for X and Y coordinates is from ``-32768`` to ``32767``. When saving tile data, tiles outside this range are wrapped.
  21. .. rst-class:: classref-introduction-group
  22. Tutorials
  23. ---------
  24. - :doc:`Using Tilemaps <../tutorials/2d/using_tilemaps>`
  25. - `2D Platformer Demo <https://godotengine.org/asset-library/asset/2727>`__
  26. - `2D Isometric Demo <https://godotengine.org/asset-library/asset/2718>`__
  27. - `2D Hexagonal Demo <https://godotengine.org/asset-library/asset/2717>`__
  28. - `2D Grid-based Navigation with AStarGrid2D Demo <https://godotengine.org/asset-library/asset/2723>`__
  29. - `2D Role Playing Game (RPG) Demo <https://godotengine.org/asset-library/asset/2729>`__
  30. - `2D Kinematic Character Demo <https://godotengine.org/asset-library/asset/2719>`__
  31. - `2D Dynamic TileMap Layers Demo <https://godotengine.org/asset-library/asset/2713>`__
  32. .. rst-class:: classref-reftable-group
  33. Properties
  34. ----------
  35. .. table::
  36. :widths: auto
  37. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  38. | :ref:`bool<class_bool>` | :ref:`collision_animatable<class_TileMap_property_collision_animatable>` | ``false`` |
  39. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  40. | :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` | :ref:`collision_visibility_mode<class_TileMap_property_collision_visibility_mode>` | ``0`` |
  41. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  42. | :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` | :ref:`navigation_visibility_mode<class_TileMap_property_navigation_visibility_mode>` | ``0`` |
  43. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  44. | :ref:`int<class_int>` | :ref:`rendering_quadrant_size<class_TileMap_property_rendering_quadrant_size>` | ``16`` |
  45. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  46. | :ref:`TileSet<class_TileSet>` | :ref:`tile_set<class_TileMap_property_tile_set>` | |
  47. +----------------------------------------------------+--------------------------------------------------------------------------------------+-----------+
  48. .. rst-class:: classref-reftable-group
  49. Methods
  50. -------
  51. .. table::
  52. :widths: auto
  53. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | |void| | :ref:`_tile_data_runtime_update<class_TileMap_private_method__tile_data_runtime_update>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, tile_data\: :ref:`TileData<class_TileData>`\ ) |virtual| |
  55. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`bool<class_bool>` | :ref:`_use_tile_data_runtime_update<class_TileMap_private_method__use_tile_data_runtime_update>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`\ ) |virtual| |
  57. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | |void| | :ref:`add_layer<class_TileMap_method_add_layer>`\ (\ to_position\: :ref:`int<class_int>`\ ) |
  59. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | |void| | :ref:`clear<class_TileMap_method_clear>`\ (\ ) |
  61. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | |void| | :ref:`clear_layer<class_TileMap_method_clear_layer>`\ (\ layer\: :ref:`int<class_int>`\ ) |
  63. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | |void| | :ref:`erase_cell<class_TileMap_method_erase_cell>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`\ ) |
  65. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | |void| | :ref:`fix_invalid_tiles<class_TileMap_method_fix_invalid_tiles>`\ (\ ) |
  67. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | |void| | :ref:`force_update<class_TileMap_method_force_update>`\ (\ layer\: :ref:`int<class_int>` = -1\ ) |
  69. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`int<class_int>` | :ref:`get_cell_alternative_tile<class_TileMap_method_get_cell_alternative_tile>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  71. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`Vector2i<class_Vector2i>` | :ref:`get_cell_atlas_coords<class_TileMap_method_get_cell_atlas_coords>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  73. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`int<class_int>` | :ref:`get_cell_source_id<class_TileMap_method_get_cell_source_id>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  75. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`TileData<class_TileData>` | :ref:`get_cell_tile_data<class_TileMap_method_get_cell_tile_data>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  77. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`Vector2i<class_Vector2i>` | :ref:`get_coords_for_body_rid<class_TileMap_method_get_coords_for_body_rid>`\ (\ body\: :ref:`RID<class_RID>`\ ) |
  79. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`int<class_int>` | :ref:`get_layer_for_body_rid<class_TileMap_method_get_layer_for_body_rid>`\ (\ body\: :ref:`RID<class_RID>`\ ) |
  81. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`Color<class_Color>` | :ref:`get_layer_modulate<class_TileMap_method_get_layer_modulate>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  83. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`String<class_String>` | :ref:`get_layer_name<class_TileMap_method_get_layer_name>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  85. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`RID<class_RID>` | :ref:`get_layer_navigation_map<class_TileMap_method_get_layer_navigation_map>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  87. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`int<class_int>` | :ref:`get_layer_y_sort_origin<class_TileMap_method_get_layer_y_sort_origin>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  89. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`int<class_int>` | :ref:`get_layer_z_index<class_TileMap_method_get_layer_z_index>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  91. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`int<class_int>` | :ref:`get_layers_count<class_TileMap_method_get_layers_count>`\ (\ ) |const| |
  93. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`RID<class_RID>` | :ref:`get_navigation_map<class_TileMap_method_get_navigation_map>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  95. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`Vector2i<class_Vector2i>` | :ref:`get_neighbor_cell<class_TileMap_method_get_neighbor_cell>`\ (\ coords\: :ref:`Vector2i<class_Vector2i>`, neighbor\: :ref:`CellNeighbor<enum_TileSet_CellNeighbor>`\ ) |const| |
  97. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | :ref:`TileMapPattern<class_TileMapPattern>` | :ref:`get_pattern<class_TileMap_method_get_pattern>`\ (\ layer\: :ref:`int<class_int>`, coords_array\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\]\ ) |
  99. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] | :ref:`get_surrounding_cells<class_TileMap_method_get_surrounding_cells>`\ (\ coords\: :ref:`Vector2i<class_Vector2i>`\ ) |
  101. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. | :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] | :ref:`get_used_cells<class_TileMap_method_get_used_cells>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  103. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  104. | :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] | :ref:`get_used_cells_by_id<class_TileMap_method_get_used_cells_by_id>`\ (\ layer\: :ref:`int<class_int>`, source_id\: :ref:`int<class_int>` = -1, atlas_coords\: :ref:`Vector2i<class_Vector2i>` = Vector2i(-1, -1), alternative_tile\: :ref:`int<class_int>` = -1\ ) |const| |
  105. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  106. | :ref:`Rect2i<class_Rect2i>` | :ref:`get_used_rect<class_TileMap_method_get_used_rect>`\ (\ ) |const| |
  107. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`bool<class_bool>` | :ref:`is_cell_flipped_h<class_TileMap_method_is_cell_flipped_h>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  109. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`bool<class_bool>` | :ref:`is_cell_flipped_v<class_TileMap_method_is_cell_flipped_v>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  111. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`bool<class_bool>` | :ref:`is_cell_transposed<class_TileMap_method_is_cell_transposed>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| |
  113. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`bool<class_bool>` | :ref:`is_layer_enabled<class_TileMap_method_is_layer_enabled>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  115. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`bool<class_bool>` | :ref:`is_layer_navigation_enabled<class_TileMap_method_is_layer_navigation_enabled>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  117. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`bool<class_bool>` | :ref:`is_layer_y_sort_enabled<class_TileMap_method_is_layer_y_sort_enabled>`\ (\ layer\: :ref:`int<class_int>`\ ) |const| |
  119. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`Vector2i<class_Vector2i>` | :ref:`local_to_map<class_TileMap_method_local_to_map>`\ (\ local_position\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  121. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`Vector2i<class_Vector2i>` | :ref:`map_pattern<class_TileMap_method_map_pattern>`\ (\ position_in_tilemap\: :ref:`Vector2i<class_Vector2i>`, coords_in_pattern\: :ref:`Vector2i<class_Vector2i>`, pattern\: :ref:`TileMapPattern<class_TileMapPattern>`\ ) |
  123. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`Vector2<class_Vector2>` | :ref:`map_to_local<class_TileMap_method_map_to_local>`\ (\ map_position\: :ref:`Vector2i<class_Vector2i>`\ ) |const| |
  125. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  126. | |void| | :ref:`move_layer<class_TileMap_method_move_layer>`\ (\ layer\: :ref:`int<class_int>`, to_position\: :ref:`int<class_int>`\ ) |
  127. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  128. | |void| | :ref:`notify_runtime_tile_data_update<class_TileMap_method_notify_runtime_tile_data_update>`\ (\ layer\: :ref:`int<class_int>` = -1\ ) |
  129. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  130. | |void| | :ref:`remove_layer<class_TileMap_method_remove_layer>`\ (\ layer\: :ref:`int<class_int>`\ ) |
  131. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  132. | |void| | :ref:`set_cell<class_TileMap_method_set_cell>`\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, source_id\: :ref:`int<class_int>` = -1, atlas_coords\: :ref:`Vector2i<class_Vector2i>` = Vector2i(-1, -1), alternative_tile\: :ref:`int<class_int>` = 0\ ) |
  133. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  134. | |void| | :ref:`set_cells_terrain_connect<class_TileMap_method_set_cells_terrain_connect>`\ (\ layer\: :ref:`int<class_int>`, cells\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\], terrain_set\: :ref:`int<class_int>`, terrain\: :ref:`int<class_int>`, ignore_empty_terrains\: :ref:`bool<class_bool>` = true\ ) |
  135. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  136. | |void| | :ref:`set_cells_terrain_path<class_TileMap_method_set_cells_terrain_path>`\ (\ layer\: :ref:`int<class_int>`, path\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\], terrain_set\: :ref:`int<class_int>`, terrain\: :ref:`int<class_int>`, ignore_empty_terrains\: :ref:`bool<class_bool>` = true\ ) |
  137. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  138. | |void| | :ref:`set_layer_enabled<class_TileMap_method_set_layer_enabled>`\ (\ layer\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) |
  139. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  140. | |void| | :ref:`set_layer_modulate<class_TileMap_method_set_layer_modulate>`\ (\ layer\: :ref:`int<class_int>`, modulate\: :ref:`Color<class_Color>`\ ) |
  141. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  142. | |void| | :ref:`set_layer_name<class_TileMap_method_set_layer_name>`\ (\ layer\: :ref:`int<class_int>`, name\: :ref:`String<class_String>`\ ) |
  143. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  144. | |void| | :ref:`set_layer_navigation_enabled<class_TileMap_method_set_layer_navigation_enabled>`\ (\ layer\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) |
  145. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  146. | |void| | :ref:`set_layer_navigation_map<class_TileMap_method_set_layer_navigation_map>`\ (\ layer\: :ref:`int<class_int>`, map\: :ref:`RID<class_RID>`\ ) |
  147. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  148. | |void| | :ref:`set_layer_y_sort_enabled<class_TileMap_method_set_layer_y_sort_enabled>`\ (\ layer\: :ref:`int<class_int>`, y_sort_enabled\: :ref:`bool<class_bool>`\ ) |
  149. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  150. | |void| | :ref:`set_layer_y_sort_origin<class_TileMap_method_set_layer_y_sort_origin>`\ (\ layer\: :ref:`int<class_int>`, y_sort_origin\: :ref:`int<class_int>`\ ) |
  151. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  152. | |void| | :ref:`set_layer_z_index<class_TileMap_method_set_layer_z_index>`\ (\ layer\: :ref:`int<class_int>`, z_index\: :ref:`int<class_int>`\ ) |
  153. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  154. | |void| | :ref:`set_navigation_map<class_TileMap_method_set_navigation_map>`\ (\ layer\: :ref:`int<class_int>`, map\: :ref:`RID<class_RID>`\ ) |
  155. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  156. | |void| | :ref:`set_pattern<class_TileMap_method_set_pattern>`\ (\ layer\: :ref:`int<class_int>`, position\: :ref:`Vector2i<class_Vector2i>`, pattern\: :ref:`TileMapPattern<class_TileMapPattern>`\ ) |
  157. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  158. | |void| | :ref:`update_internals<class_TileMap_method_update_internals>`\ (\ ) |
  159. +--------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  160. .. rst-class:: classref-section-separator
  161. ----
  162. .. rst-class:: classref-descriptions-group
  163. Signals
  164. -------
  165. .. _class_TileMap_signal_changed:
  166. .. rst-class:: classref-signal
  167. **changed**\ (\ ) :ref:`๐Ÿ”—<class_TileMap_signal_changed>`
  168. Emitted when the :ref:`TileSet<class_TileSet>` of this TileMap changes.
  169. .. rst-class:: classref-section-separator
  170. ----
  171. .. rst-class:: classref-descriptions-group
  172. Enumerations
  173. ------------
  174. .. _enum_TileMap_VisibilityMode:
  175. .. rst-class:: classref-enumeration
  176. enum **VisibilityMode**: :ref:`๐Ÿ”—<enum_TileMap_VisibilityMode>`
  177. .. _class_TileMap_constant_VISIBILITY_MODE_DEFAULT:
  178. .. rst-class:: classref-enumeration-constant
  179. :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **VISIBILITY_MODE_DEFAULT** = ``0``
  180. Use the debug settings to determine visibility.
  181. .. _class_TileMap_constant_VISIBILITY_MODE_FORCE_HIDE:
  182. .. rst-class:: classref-enumeration-constant
  183. :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **VISIBILITY_MODE_FORCE_HIDE** = ``2``
  184. Always hide.
  185. .. _class_TileMap_constant_VISIBILITY_MODE_FORCE_SHOW:
  186. .. rst-class:: classref-enumeration-constant
  187. :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **VISIBILITY_MODE_FORCE_SHOW** = ``1``
  188. Always show.
  189. .. rst-class:: classref-section-separator
  190. ----
  191. .. rst-class:: classref-descriptions-group
  192. Property Descriptions
  193. ---------------------
  194. .. _class_TileMap_property_collision_animatable:
  195. .. rst-class:: classref-property
  196. :ref:`bool<class_bool>` **collision_animatable** = ``false`` :ref:`๐Ÿ”—<class_TileMap_property_collision_animatable>`
  197. .. rst-class:: classref-property-setget
  198. - |void| **set_collision_animatable**\ (\ value\: :ref:`bool<class_bool>`\ )
  199. - :ref:`bool<class_bool>` **is_collision_animatable**\ (\ )
  200. 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.
  201. \ **Note:** Enabling :ref:`collision_animatable<class_TileMap_property_collision_animatable>` may have a small performance impact, only do it if the TileMap is moving and has colliding tiles.
  202. .. rst-class:: classref-item-separator
  203. ----
  204. .. _class_TileMap_property_collision_visibility_mode:
  205. .. rst-class:: classref-property
  206. :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **collision_visibility_mode** = ``0`` :ref:`๐Ÿ”—<class_TileMap_property_collision_visibility_mode>`
  207. .. rst-class:: classref-property-setget
  208. - |void| **set_collision_visibility_mode**\ (\ value\: :ref:`VisibilityMode<enum_TileMap_VisibilityMode>`\ )
  209. - :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **get_collision_visibility_mode**\ (\ )
  210. Show or hide the TileMap's collision shapes. If set to :ref:`VISIBILITY_MODE_DEFAULT<class_TileMap_constant_VISIBILITY_MODE_DEFAULT>`, this depends on the show collision debug settings.
  211. .. rst-class:: classref-item-separator
  212. ----
  213. .. _class_TileMap_property_navigation_visibility_mode:
  214. .. rst-class:: classref-property
  215. :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **navigation_visibility_mode** = ``0`` :ref:`๐Ÿ”—<class_TileMap_property_navigation_visibility_mode>`
  216. .. rst-class:: classref-property-setget
  217. - |void| **set_navigation_visibility_mode**\ (\ value\: :ref:`VisibilityMode<enum_TileMap_VisibilityMode>`\ )
  218. - :ref:`VisibilityMode<enum_TileMap_VisibilityMode>` **get_navigation_visibility_mode**\ (\ )
  219. Show or hide the TileMap's navigation meshes. If set to :ref:`VISIBILITY_MODE_DEFAULT<class_TileMap_constant_VISIBILITY_MODE_DEFAULT>`, this depends on the show navigation debug settings.
  220. .. rst-class:: classref-item-separator
  221. ----
  222. .. _class_TileMap_property_rendering_quadrant_size:
  223. .. rst-class:: classref-property
  224. :ref:`int<class_int>` **rendering_quadrant_size** = ``16`` :ref:`๐Ÿ”—<class_TileMap_property_rendering_quadrant_size>`
  225. .. rst-class:: classref-property-setget
  226. - |void| **set_rendering_quadrant_size**\ (\ value\: :ref:`int<class_int>`\ )
  227. - :ref:`int<class_int>` **get_rendering_quadrant_size**\ (\ )
  228. The TileMap's quadrant size. A quadrant is a group of tiles to be drawn together on a single canvas item, for optimization purposes. :ref:`rendering_quadrant_size<class_TileMap_property_rendering_quadrant_size>` defines the length of a square's side, in the map's coordinate system, that forms the quadrant. Thus, the default quadrant size groups together ``16 * 16 = 256`` tiles.
  229. The quadrant size does not apply on Y-sorted layers, as tiles are grouped by Y position instead in that case.
  230. \ **Note:** As quadrants are created according to the map's coordinate system, the quadrant's "square shape" might not look like square in the TileMap's local coordinate system.
  231. .. rst-class:: classref-item-separator
  232. ----
  233. .. _class_TileMap_property_tile_set:
  234. .. rst-class:: classref-property
  235. :ref:`TileSet<class_TileSet>` **tile_set** :ref:`๐Ÿ”—<class_TileMap_property_tile_set>`
  236. .. rst-class:: classref-property-setget
  237. - |void| **set_tileset**\ (\ value\: :ref:`TileSet<class_TileSet>`\ )
  238. - :ref:`TileSet<class_TileSet>` **get_tileset**\ (\ )
  239. The :ref:`TileSet<class_TileSet>` used by this **TileMap**. The textures, collisions, and additional behavior of all available tiles are stored here.
  240. .. rst-class:: classref-section-separator
  241. ----
  242. .. rst-class:: classref-descriptions-group
  243. Method Descriptions
  244. -------------------
  245. .. _class_TileMap_private_method__tile_data_runtime_update:
  246. .. rst-class:: classref-method
  247. |void| **_tile_data_runtime_update**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, tile_data\: :ref:`TileData<class_TileData>`\ ) |virtual| :ref:`๐Ÿ”—<class_TileMap_private_method__tile_data_runtime_update>`
  248. Called with a TileData object about to be used internally by the TileMap, allowing its modification at runtime.
  249. This method is only called if :ref:`_use_tile_data_runtime_update()<class_TileMap_private_method__use_tile_data_runtime_update>` is implemented and returns ``true`` for the given tile ``coords`` and ``layer``.
  250. \ **Warning:** The ``tile_data`` object's sub-resources are the same as the one in the TileSet. Modifying them might impact the whole TileSet. Instead, make sure to duplicate those resources.
  251. \ **Note:** If the properties of ``tile_data`` object should change over time, use :ref:`notify_runtime_tile_data_update()<class_TileMap_method_notify_runtime_tile_data_update>` to notify the TileMap it needs an update.
  252. .. rst-class:: classref-item-separator
  253. ----
  254. .. _class_TileMap_private_method__use_tile_data_runtime_update:
  255. .. rst-class:: classref-method
  256. :ref:`bool<class_bool>` **_use_tile_data_runtime_update**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`\ ) |virtual| :ref:`๐Ÿ”—<class_TileMap_private_method__use_tile_data_runtime_update>`
  257. Should return ``true`` if the tile at coordinates ``coords`` on layer ``layer`` requires a runtime update.
  258. \ **Warning:** Make sure this function only return ``true`` when needed. Any tile processed at runtime without a need for it will imply a significant performance penalty.
  259. \ **Note:** If the result of this function should changed, use :ref:`notify_runtime_tile_data_update()<class_TileMap_method_notify_runtime_tile_data_update>` to notify the TileMap it needs an update.
  260. .. rst-class:: classref-item-separator
  261. ----
  262. .. _class_TileMap_method_add_layer:
  263. .. rst-class:: classref-method
  264. |void| **add_layer**\ (\ to_position\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_add_layer>`
  265. Adds a layer at the given position ``to_position`` in the array. If ``to_position`` is negative, the position is counted from the end, with ``-1`` adding the layer at the end of the array.
  266. .. rst-class:: classref-item-separator
  267. ----
  268. .. _class_TileMap_method_clear:
  269. .. rst-class:: classref-method
  270. |void| **clear**\ (\ ) :ref:`๐Ÿ”—<class_TileMap_method_clear>`
  271. Clears all cells.
  272. .. rst-class:: classref-item-separator
  273. ----
  274. .. _class_TileMap_method_clear_layer:
  275. .. rst-class:: classref-method
  276. |void| **clear_layer**\ (\ layer\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_clear_layer>`
  277. Clears all cells on the given layer.
  278. If ``layer`` is negative, the layers are accessed from the last one.
  279. .. rst-class:: classref-item-separator
  280. ----
  281. .. _class_TileMap_method_erase_cell:
  282. .. rst-class:: classref-method
  283. |void| **erase_cell**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_erase_cell>`
  284. Erases the cell on layer ``layer`` at coordinates ``coords``.
  285. If ``layer`` is negative, the layers are accessed from the last one.
  286. .. rst-class:: classref-item-separator
  287. ----
  288. .. _class_TileMap_method_fix_invalid_tiles:
  289. .. rst-class:: classref-method
  290. |void| **fix_invalid_tiles**\ (\ ) :ref:`๐Ÿ”—<class_TileMap_method_fix_invalid_tiles>`
  291. Clears cells that do not exist in the tileset.
  292. .. rst-class:: classref-item-separator
  293. ----
  294. .. _class_TileMap_method_force_update:
  295. .. rst-class:: classref-method
  296. |void| **force_update**\ (\ layer\: :ref:`int<class_int>` = -1\ ) :ref:`๐Ÿ”—<class_TileMap_method_force_update>`
  297. **Deprecated:** Use :ref:`notify_runtime_tile_data_update()<class_TileMap_method_notify_runtime_tile_data_update>` and/or :ref:`update_internals()<class_TileMap_method_update_internals>` instead.
  298. Forces the TileMap and the layer ``layer`` to update.
  299. .. rst-class:: classref-item-separator
  300. ----
  301. .. _class_TileMap_method_get_cell_alternative_tile:
  302. .. rst-class:: classref-method
  303. :ref:`int<class_int>` **get_cell_alternative_tile**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_cell_alternative_tile>`
  304. Returns the tile alternative ID of the cell on layer ``layer`` at ``coords``.
  305. If ``use_proxies`` is ``false``, ignores the :ref:`TileSet<class_TileSet>`'s tile proxies, returning the raw alternative identifier. See :ref:`TileSet.map_tile_proxy()<class_TileSet_method_map_tile_proxy>`.
  306. If ``layer`` is negative, the layers are accessed from the last one.
  307. .. rst-class:: classref-item-separator
  308. ----
  309. .. _class_TileMap_method_get_cell_atlas_coords:
  310. .. rst-class:: classref-method
  311. :ref:`Vector2i<class_Vector2i>` **get_cell_atlas_coords**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_cell_atlas_coords>`
  312. Returns the tile atlas coordinates ID of the cell on layer ``layer`` at coordinates ``coords``. Returns ``Vector2i(-1, -1)`` if the cell does not exist.
  313. If ``use_proxies`` is ``false``, ignores the :ref:`TileSet<class_TileSet>`'s tile proxies, returning the raw atlas coordinate identifier. See :ref:`TileSet.map_tile_proxy()<class_TileSet_method_map_tile_proxy>`.
  314. If ``layer`` is negative, the layers are accessed from the last one.
  315. .. rst-class:: classref-item-separator
  316. ----
  317. .. _class_TileMap_method_get_cell_source_id:
  318. .. rst-class:: classref-method
  319. :ref:`int<class_int>` **get_cell_source_id**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_cell_source_id>`
  320. Returns the tile source ID of the cell on layer ``layer`` at coordinates ``coords``. Returns ``-1`` if the cell does not exist.
  321. If ``use_proxies`` is ``false``, ignores the :ref:`TileSet<class_TileSet>`'s tile proxies, returning the raw source identifier. See :ref:`TileSet.map_tile_proxy()<class_TileSet_method_map_tile_proxy>`.
  322. If ``layer`` is negative, the layers are accessed from the last one.
  323. .. rst-class:: classref-item-separator
  324. ----
  325. .. _class_TileMap_method_get_cell_tile_data:
  326. .. rst-class:: classref-method
  327. :ref:`TileData<class_TileData>` **get_cell_tile_data**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_cell_tile_data>`
  328. Returns the :ref:`TileData<class_TileData>` object associated with the given cell, or ``null`` if the cell does not exist or is not a :ref:`TileSetAtlasSource<class_TileSetAtlasSource>`.
  329. If ``layer`` is negative, the layers are accessed from the last one.
  330. ::
  331. func get_clicked_tile_power():
  332. var clicked_cell = tile_map.local_to_map(tile_map.get_local_mouse_position())
  333. var data = tile_map.get_cell_tile_data(0, clicked_cell)
  334. if data:
  335. return data.get_custom_data("power")
  336. else:
  337. return 0
  338. If ``use_proxies`` is ``false``, ignores the :ref:`TileSet<class_TileSet>`'s tile proxies. See :ref:`TileSet.map_tile_proxy()<class_TileSet_method_map_tile_proxy>`.
  339. .. rst-class:: classref-item-separator
  340. ----
  341. .. _class_TileMap_method_get_coords_for_body_rid:
  342. .. rst-class:: classref-method
  343. :ref:`Vector2i<class_Vector2i>` **get_coords_for_body_rid**\ (\ body\: :ref:`RID<class_RID>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_get_coords_for_body_rid>`
  344. Returns the coordinates of the tile for given physics body RID. Such RID can be retrieved from :ref:`KinematicCollision2D.get_collider_rid()<class_KinematicCollision2D_method_get_collider_rid>`, when colliding with a tile.
  345. .. rst-class:: classref-item-separator
  346. ----
  347. .. _class_TileMap_method_get_layer_for_body_rid:
  348. .. rst-class:: classref-method
  349. :ref:`int<class_int>` **get_layer_for_body_rid**\ (\ body\: :ref:`RID<class_RID>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_get_layer_for_body_rid>`
  350. Returns the tilemap layer of the tile for given physics body RID. Such RID can be retrieved from :ref:`KinematicCollision2D.get_collider_rid()<class_KinematicCollision2D_method_get_collider_rid>`, when colliding with a tile.
  351. .. rst-class:: classref-item-separator
  352. ----
  353. .. _class_TileMap_method_get_layer_modulate:
  354. .. rst-class:: classref-method
  355. :ref:`Color<class_Color>` **get_layer_modulate**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layer_modulate>`
  356. Returns a TileMap layer's modulate.
  357. If ``layer`` is negative, the layers are accessed from the last one.
  358. .. rst-class:: classref-item-separator
  359. ----
  360. .. _class_TileMap_method_get_layer_name:
  361. .. rst-class:: classref-method
  362. :ref:`String<class_String>` **get_layer_name**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layer_name>`
  363. Returns a TileMap layer's name.
  364. If ``layer`` is negative, the layers are accessed from the last one.
  365. .. rst-class:: classref-item-separator
  366. ----
  367. .. _class_TileMap_method_get_layer_navigation_map:
  368. .. rst-class:: classref-method
  369. :ref:`RID<class_RID>` **get_layer_navigation_map**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layer_navigation_map>`
  370. Returns the :ref:`RID<class_RID>` of the :ref:`NavigationServer2D<class_NavigationServer2D>` navigation map assigned to the specified TileMap layer ``layer``.
  371. By default the TileMap uses the default :ref:`World2D<class_World2D>` navigation map for the first TileMap layer. For each additional TileMap layer a new navigation map is created for the additional layer.
  372. In order to make :ref:`NavigationAgent2D<class_NavigationAgent2D>` switch between TileMap layer navigation maps use :ref:`NavigationAgent2D.set_navigation_map()<class_NavigationAgent2D_method_set_navigation_map>` with the navigation map received from :ref:`get_layer_navigation_map()<class_TileMap_method_get_layer_navigation_map>`.
  373. If ``layer`` is negative, the layers are accessed from the last one.
  374. .. rst-class:: classref-item-separator
  375. ----
  376. .. _class_TileMap_method_get_layer_y_sort_origin:
  377. .. rst-class:: classref-method
  378. :ref:`int<class_int>` **get_layer_y_sort_origin**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layer_y_sort_origin>`
  379. Returns a TileMap layer's Y sort origin.
  380. If ``layer`` is negative, the layers are accessed from the last one.
  381. .. rst-class:: classref-item-separator
  382. ----
  383. .. _class_TileMap_method_get_layer_z_index:
  384. .. rst-class:: classref-method
  385. :ref:`int<class_int>` **get_layer_z_index**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layer_z_index>`
  386. Returns a TileMap layer's Z-index value.
  387. If ``layer`` is negative, the layers are accessed from the last one.
  388. .. rst-class:: classref-item-separator
  389. ----
  390. .. _class_TileMap_method_get_layers_count:
  391. .. rst-class:: classref-method
  392. :ref:`int<class_int>` **get_layers_count**\ (\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_layers_count>`
  393. Returns the number of layers in the TileMap.
  394. .. rst-class:: classref-item-separator
  395. ----
  396. .. _class_TileMap_method_get_navigation_map:
  397. .. rst-class:: classref-method
  398. :ref:`RID<class_RID>` **get_navigation_map**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_navigation_map>`
  399. **Deprecated:** Use :ref:`get_layer_navigation_map()<class_TileMap_method_get_layer_navigation_map>` instead.
  400. Returns the :ref:`RID<class_RID>` of the :ref:`NavigationServer2D<class_NavigationServer2D>` navigation map assigned to the specified TileMap layer ``layer``.
  401. .. rst-class:: classref-item-separator
  402. ----
  403. .. _class_TileMap_method_get_neighbor_cell:
  404. .. rst-class:: classref-method
  405. :ref:`Vector2i<class_Vector2i>` **get_neighbor_cell**\ (\ coords\: :ref:`Vector2i<class_Vector2i>`, neighbor\: :ref:`CellNeighbor<enum_TileSet_CellNeighbor>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_neighbor_cell>`
  406. Returns the neighboring cell to the one at coordinates ``coords``, identified by the ``neighbor`` direction. This method takes into account the different layouts a TileMap can take.
  407. .. rst-class:: classref-item-separator
  408. ----
  409. .. _class_TileMap_method_get_pattern:
  410. .. rst-class:: classref-method
  411. :ref:`TileMapPattern<class_TileMapPattern>` **get_pattern**\ (\ layer\: :ref:`int<class_int>`, coords_array\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\]\ ) :ref:`๐Ÿ”—<class_TileMap_method_get_pattern>`
  412. Creates a new :ref:`TileMapPattern<class_TileMapPattern>` from the given layer and set of cells.
  413. If ``layer`` is negative, the layers are accessed from the last one.
  414. .. rst-class:: classref-item-separator
  415. ----
  416. .. _class_TileMap_method_get_surrounding_cells:
  417. .. rst-class:: classref-method
  418. :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] **get_surrounding_cells**\ (\ coords\: :ref:`Vector2i<class_Vector2i>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_get_surrounding_cells>`
  419. Returns the list of all neighbourings cells to the one at ``coords``.
  420. .. rst-class:: classref-item-separator
  421. ----
  422. .. _class_TileMap_method_get_used_cells:
  423. .. rst-class:: classref-method
  424. :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] **get_used_cells**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_used_cells>`
  425. Returns a :ref:`Vector2i<class_Vector2i>` 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 ``Vector2(-1, -1)`` and its alternative identifier is -1.
  426. If ``layer`` is negative, the layers are accessed from the last one.
  427. .. rst-class:: classref-item-separator
  428. ----
  429. .. _class_TileMap_method_get_used_cells_by_id:
  430. .. rst-class:: classref-method
  431. :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\] **get_used_cells_by_id**\ (\ layer\: :ref:`int<class_int>`, source_id\: :ref:`int<class_int>` = -1, atlas_coords\: :ref:`Vector2i<class_Vector2i>` = Vector2i(-1, -1), alternative_tile\: :ref:`int<class_int>` = -1\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_used_cells_by_id>`
  432. Returns a :ref:`Vector2i<class_Vector2i>` array with the positions of all cells containing a tile in the given layer. Tiles may be filtered according to their source (``source_id``), their atlas coordinates (``atlas_coords``) or alternative id (``alternative_tile``).
  433. If a parameter has its value set to the default one, this parameter is not used to filter a cell. Thus, if all parameters have their respective default value, this method returns the same result as :ref:`get_used_cells()<class_TileMap_method_get_used_cells>`.
  434. A cell is considered empty if its source identifier equals -1, its atlas coordinates identifiers is ``Vector2(-1, -1)`` and its alternative identifier is -1.
  435. If ``layer`` is negative, the layers are accessed from the last one.
  436. .. rst-class:: classref-item-separator
  437. ----
  438. .. _class_TileMap_method_get_used_rect:
  439. .. rst-class:: classref-method
  440. :ref:`Rect2i<class_Rect2i>` **get_used_rect**\ (\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_get_used_rect>`
  441. Returns a rectangle enclosing the used (non-empty) tiles of the map, including all layers.
  442. .. rst-class:: classref-item-separator
  443. ----
  444. .. _class_TileMap_method_is_cell_flipped_h:
  445. .. rst-class:: classref-method
  446. :ref:`bool<class_bool>` **is_cell_flipped_h**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_cell_flipped_h>`
  447. Returns ``true`` if the cell on layer ``layer`` at coordinates ``coords`` is flipped horizontally. The result is valid only for atlas sources.
  448. .. rst-class:: classref-item-separator
  449. ----
  450. .. _class_TileMap_method_is_cell_flipped_v:
  451. .. rst-class:: classref-method
  452. :ref:`bool<class_bool>` **is_cell_flipped_v**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_cell_flipped_v>`
  453. Returns ``true`` if the cell on layer ``layer`` at coordinates ``coords`` is flipped vertically. The result is valid only for atlas sources.
  454. .. rst-class:: classref-item-separator
  455. ----
  456. .. _class_TileMap_method_is_cell_transposed:
  457. .. rst-class:: classref-method
  458. :ref:`bool<class_bool>` **is_cell_transposed**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, use_proxies\: :ref:`bool<class_bool>` = false\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_cell_transposed>`
  459. Returns ``true`` if the cell on layer ``layer`` at coordinates ``coords`` is transposed. The result is valid only for atlas sources.
  460. .. rst-class:: classref-item-separator
  461. ----
  462. .. _class_TileMap_method_is_layer_enabled:
  463. .. rst-class:: classref-method
  464. :ref:`bool<class_bool>` **is_layer_enabled**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_layer_enabled>`
  465. Returns if a layer is enabled.
  466. If ``layer`` is negative, the layers are accessed from the last one.
  467. .. rst-class:: classref-item-separator
  468. ----
  469. .. _class_TileMap_method_is_layer_navigation_enabled:
  470. .. rst-class:: classref-method
  471. :ref:`bool<class_bool>` **is_layer_navigation_enabled**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_layer_navigation_enabled>`
  472. Returns if a layer's built-in navigation regions generation is enabled.
  473. .. rst-class:: classref-item-separator
  474. ----
  475. .. _class_TileMap_method_is_layer_y_sort_enabled:
  476. .. rst-class:: classref-method
  477. :ref:`bool<class_bool>` **is_layer_y_sort_enabled**\ (\ layer\: :ref:`int<class_int>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_is_layer_y_sort_enabled>`
  478. Returns if a layer Y-sorts its tiles.
  479. If ``layer`` is negative, the layers are accessed from the last one.
  480. .. rst-class:: classref-item-separator
  481. ----
  482. .. _class_TileMap_method_local_to_map:
  483. .. rst-class:: classref-method
  484. :ref:`Vector2i<class_Vector2i>` **local_to_map**\ (\ local_position\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_local_to_map>`
  485. Returns the map coordinates of the cell containing the given ``local_position``. If ``local_position`` is in global coordinates, consider using :ref:`Node2D.to_local()<class_Node2D_method_to_local>` before passing it to this method. See also :ref:`map_to_local()<class_TileMap_method_map_to_local>`.
  486. .. rst-class:: classref-item-separator
  487. ----
  488. .. _class_TileMap_method_map_pattern:
  489. .. rst-class:: classref-method
  490. :ref:`Vector2i<class_Vector2i>` **map_pattern**\ (\ position_in_tilemap\: :ref:`Vector2i<class_Vector2i>`, coords_in_pattern\: :ref:`Vector2i<class_Vector2i>`, pattern\: :ref:`TileMapPattern<class_TileMapPattern>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_map_pattern>`
  491. Returns for the given coordinate ``coords_in_pattern`` in a :ref:`TileMapPattern<class_TileMapPattern>` the corresponding cell coordinates if the pattern was pasted at the ``position_in_tilemap`` coordinates (see :ref:`set_pattern()<class_TileMap_method_set_pattern>`). This mapping is required as in half-offset tile shapes, the mapping might not work by calculating ``position_in_tile_map + coords_in_pattern``.
  492. .. rst-class:: classref-item-separator
  493. ----
  494. .. _class_TileMap_method_map_to_local:
  495. .. rst-class:: classref-method
  496. :ref:`Vector2<class_Vector2>` **map_to_local**\ (\ map_position\: :ref:`Vector2i<class_Vector2i>`\ ) |const| :ref:`๐Ÿ”—<class_TileMap_method_map_to_local>`
  497. Returns the centered position of a cell in the TileMap's local coordinate space. To convert the returned value into global coordinates, use :ref:`Node2D.to_global()<class_Node2D_method_to_global>`. See also :ref:`local_to_map()<class_TileMap_method_local_to_map>`.
  498. \ **Note:** This may not correspond to the visual position of the tile, i.e. it ignores the :ref:`TileData.texture_origin<class_TileData_property_texture_origin>` property of individual tiles.
  499. .. rst-class:: classref-item-separator
  500. ----
  501. .. _class_TileMap_method_move_layer:
  502. .. rst-class:: classref-method
  503. |void| **move_layer**\ (\ layer\: :ref:`int<class_int>`, to_position\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_move_layer>`
  504. Moves the layer at index ``layer`` to the given position ``to_position`` in the array.
  505. .. rst-class:: classref-item-separator
  506. ----
  507. .. _class_TileMap_method_notify_runtime_tile_data_update:
  508. .. rst-class:: classref-method
  509. |void| **notify_runtime_tile_data_update**\ (\ layer\: :ref:`int<class_int>` = -1\ ) :ref:`๐Ÿ”—<class_TileMap_method_notify_runtime_tile_data_update>`
  510. Notifies the TileMap node that calls to :ref:`_use_tile_data_runtime_update()<class_TileMap_private_method__use_tile_data_runtime_update>` or :ref:`_tile_data_runtime_update()<class_TileMap_private_method__tile_data_runtime_update>` will lead to different results. This will thus trigger a TileMap update.
  511. If ``layer`` is provided, only notifies changes for the given layer. Providing the ``layer`` argument (when applicable) is usually preferred for performance reasons.
  512. \ **Warning:** Updating the TileMap is computationally expensive and may impact performance. Try to limit the number of calls to this function to avoid unnecessary update.
  513. \ **Note:** This does not trigger a direct update of the TileMap, the update will be done at the end of the frame as usual (unless you call :ref:`update_internals()<class_TileMap_method_update_internals>`).
  514. .. rst-class:: classref-item-separator
  515. ----
  516. .. _class_TileMap_method_remove_layer:
  517. .. rst-class:: classref-method
  518. |void| **remove_layer**\ (\ layer\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_remove_layer>`
  519. Removes the layer at index ``layer``.
  520. .. rst-class:: classref-item-separator
  521. ----
  522. .. _class_TileMap_method_set_cell:
  523. .. rst-class:: classref-method
  524. |void| **set_cell**\ (\ layer\: :ref:`int<class_int>`, coords\: :ref:`Vector2i<class_Vector2i>`, source_id\: :ref:`int<class_int>` = -1, atlas_coords\: :ref:`Vector2i<class_Vector2i>` = Vector2i(-1, -1), alternative_tile\: :ref:`int<class_int>` = 0\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_cell>`
  525. Sets the tile identifiers for the cell on layer ``layer`` at coordinates ``coords``. Each tile of the :ref:`TileSet<class_TileSet>` is identified using three parts:
  526. - The source identifier ``source_id`` identifies a :ref:`TileSetSource<class_TileSetSource>` identifier. See :ref:`TileSet.set_source_id()<class_TileSet_method_set_source_id>`,
  527. - The atlas coordinates identifier ``atlas_coords`` identifies a tile coordinates in the atlas (if the source is a :ref:`TileSetAtlasSource<class_TileSetAtlasSource>`). For :ref:`TileSetScenesCollectionSource<class_TileSetScenesCollectionSource>` it should always be ``Vector2i(0, 0)``),
  528. - The alternative tile identifier ``alternative_tile`` identifies a tile alternative in the atlas (if the source is a :ref:`TileSetAtlasSource<class_TileSetAtlasSource>`), and the scene for a :ref:`TileSetScenesCollectionSource<class_TileSetScenesCollectionSource>`.
  529. If ``source_id`` is set to ``-1``, ``atlas_coords`` to ``Vector2i(-1, -1)`` or ``alternative_tile`` to ``-1``, the cell will be erased. An erased cell gets **all** its identifiers automatically set to their respective invalid values, namely ``-1``, ``Vector2i(-1, -1)`` and ``-1``.
  530. If ``layer`` is negative, the layers are accessed from the last one.
  531. .. rst-class:: classref-item-separator
  532. ----
  533. .. _class_TileMap_method_set_cells_terrain_connect:
  534. .. rst-class:: classref-method
  535. |void| **set_cells_terrain_connect**\ (\ layer\: :ref:`int<class_int>`, cells\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\], terrain_set\: :ref:`int<class_int>`, terrain\: :ref:`int<class_int>`, ignore_empty_terrains\: :ref:`bool<class_bool>` = true\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_cells_terrain_connect>`
  536. Update all the cells in the ``cells`` coordinates array so that they use the given ``terrain`` for the given ``terrain_set``. If an updated cell has the same terrain as one of its neighboring cells, this function tries to join the two. This function might update neighboring tiles if needed to create correct terrain transitions.
  537. If ``ignore_empty_terrains`` is ``true``, empty terrains will be ignored when trying to find the best fitting tile for the given terrain constraints.
  538. If ``layer`` is negative, the layers are accessed from the last one.
  539. \ **Note:** To work correctly, this method requires the TileMap's TileSet to have terrains set up with all required terrain combinations. Otherwise, it may produce unexpected results.
  540. .. rst-class:: classref-item-separator
  541. ----
  542. .. _class_TileMap_method_set_cells_terrain_path:
  543. .. rst-class:: classref-method
  544. |void| **set_cells_terrain_path**\ (\ layer\: :ref:`int<class_int>`, path\: :ref:`Array<class_Array>`\[:ref:`Vector2i<class_Vector2i>`\], terrain_set\: :ref:`int<class_int>`, terrain\: :ref:`int<class_int>`, ignore_empty_terrains\: :ref:`bool<class_bool>` = true\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_cells_terrain_path>`
  545. Update all the cells in the ``path`` coordinates array so that they use the given ``terrain`` for the given ``terrain_set``. The function will also connect two successive cell in the path with the same terrain. This function might update neighboring tiles if needed to create correct terrain transitions.
  546. If ``ignore_empty_terrains`` is ``true``, empty terrains will be ignored when trying to find the best fitting tile for the given terrain constraints.
  547. If ``layer`` is negative, the layers are accessed from the last one.
  548. \ **Note:** To work correctly, this method requires the TileMap's TileSet to have terrains set up with all required terrain combinations. Otherwise, it may produce unexpected results.
  549. .. rst-class:: classref-item-separator
  550. ----
  551. .. _class_TileMap_method_set_layer_enabled:
  552. .. rst-class:: classref-method
  553. |void| **set_layer_enabled**\ (\ layer\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_enabled>`
  554. Enables or disables the layer ``layer``. A disabled layer is not processed at all (no rendering, no physics, etc.).
  555. If ``layer`` is negative, the layers are accessed from the last one.
  556. .. rst-class:: classref-item-separator
  557. ----
  558. .. _class_TileMap_method_set_layer_modulate:
  559. .. rst-class:: classref-method
  560. |void| **set_layer_modulate**\ (\ layer\: :ref:`int<class_int>`, modulate\: :ref:`Color<class_Color>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_modulate>`
  561. Sets a layer's color. It will be multiplied by tile's color and TileMap's modulate.
  562. If ``layer`` is negative, the layers are accessed from the last one.
  563. .. rst-class:: classref-item-separator
  564. ----
  565. .. _class_TileMap_method_set_layer_name:
  566. .. rst-class:: classref-method
  567. |void| **set_layer_name**\ (\ layer\: :ref:`int<class_int>`, name\: :ref:`String<class_String>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_name>`
  568. Sets a layer's name. This is mostly useful in the editor.
  569. If ``layer`` is negative, the layers are accessed from the last one.
  570. .. rst-class:: classref-item-separator
  571. ----
  572. .. _class_TileMap_method_set_layer_navigation_enabled:
  573. .. rst-class:: classref-method
  574. |void| **set_layer_navigation_enabled**\ (\ layer\: :ref:`int<class_int>`, enabled\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_navigation_enabled>`
  575. Enables or disables a layer's built-in navigation regions generation. Disable this if you need to bake navigation regions from a TileMap using a :ref:`NavigationRegion2D<class_NavigationRegion2D>` node.
  576. .. rst-class:: classref-item-separator
  577. ----
  578. .. _class_TileMap_method_set_layer_navigation_map:
  579. .. rst-class:: classref-method
  580. |void| **set_layer_navigation_map**\ (\ layer\: :ref:`int<class_int>`, map\: :ref:`RID<class_RID>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_navigation_map>`
  581. Assigns ``map`` as a :ref:`NavigationServer2D<class_NavigationServer2D>` navigation map for the specified TileMap layer ``layer``.
  582. By default the TileMap uses the default :ref:`World2D<class_World2D>` navigation map for the first TileMap layer. For each additional TileMap layer a new navigation map is created for the additional layer.
  583. In order to make :ref:`NavigationAgent2D<class_NavigationAgent2D>` switch between TileMap layer navigation maps use :ref:`NavigationAgent2D.set_navigation_map()<class_NavigationAgent2D_method_set_navigation_map>` with the navigation map received from :ref:`get_layer_navigation_map()<class_TileMap_method_get_layer_navigation_map>`.
  584. If ``layer`` is negative, the layers are accessed from the last one.
  585. .. rst-class:: classref-item-separator
  586. ----
  587. .. _class_TileMap_method_set_layer_y_sort_enabled:
  588. .. rst-class:: classref-method
  589. |void| **set_layer_y_sort_enabled**\ (\ layer\: :ref:`int<class_int>`, y_sort_enabled\: :ref:`bool<class_bool>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_y_sort_enabled>`
  590. 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.
  591. 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 behavior.
  592. If ``layer`` is negative, the layers are accessed from the last one.
  593. .. rst-class:: classref-item-separator
  594. ----
  595. .. _class_TileMap_method_set_layer_y_sort_origin:
  596. .. rst-class:: classref-method
  597. |void| **set_layer_y_sort_origin**\ (\ layer\: :ref:`int<class_int>`, y_sort_origin\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_y_sort_origin>`
  598. Sets a layer's Y-sort origin value. This Y-sort origin value is added to each tile's Y-sort origin value.
  599. This allows, for example, to fake a different height level on each layer. This can be useful for top-down view games.
  600. If ``layer`` is negative, the layers are accessed from the last one.
  601. .. rst-class:: classref-item-separator
  602. ----
  603. .. _class_TileMap_method_set_layer_z_index:
  604. .. rst-class:: classref-method
  605. |void| **set_layer_z_index**\ (\ layer\: :ref:`int<class_int>`, z_index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_layer_z_index>`
  606. Sets a layers Z-index value. This Z-index is added to each tile's Z-index value.
  607. If ``layer`` is negative, the layers are accessed from the last one.
  608. .. rst-class:: classref-item-separator
  609. ----
  610. .. _class_TileMap_method_set_navigation_map:
  611. .. rst-class:: classref-method
  612. |void| **set_navigation_map**\ (\ layer\: :ref:`int<class_int>`, map\: :ref:`RID<class_RID>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_navigation_map>`
  613. **Deprecated:** Use :ref:`set_layer_navigation_map()<class_TileMap_method_set_layer_navigation_map>` instead.
  614. Assigns ``map`` as a :ref:`NavigationServer2D<class_NavigationServer2D>` navigation map for the specified TileMap layer ``layer``.
  615. .. rst-class:: classref-item-separator
  616. ----
  617. .. _class_TileMap_method_set_pattern:
  618. .. rst-class:: classref-method
  619. |void| **set_pattern**\ (\ layer\: :ref:`int<class_int>`, position\: :ref:`Vector2i<class_Vector2i>`, pattern\: :ref:`TileMapPattern<class_TileMapPattern>`\ ) :ref:`๐Ÿ”—<class_TileMap_method_set_pattern>`
  620. Paste the given :ref:`TileMapPattern<class_TileMapPattern>` at the given ``position`` and ``layer`` in the tile map.
  621. If ``layer`` is negative, the layers are accessed from the last one.
  622. .. rst-class:: classref-item-separator
  623. ----
  624. .. _class_TileMap_method_update_internals:
  625. .. rst-class:: classref-method
  626. |void| **update_internals**\ (\ ) :ref:`๐Ÿ”—<class_TileMap_method_update_internals>`
  627. Triggers a direct update of the TileMap. Usually, calling this function is not needed, as TileMap node updates automatically when one of its properties or cells is modified.
  628. However, for performance reasons, those updates are batched and delayed to the end of the frame. Calling this function will force the TileMap to update right away instead.
  629. \ **Warning:** Updating the TileMap is computationally expensive and may impact performance. Try to limit the number of updates and how many tiles they impact.
  630. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  631. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  632. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  633. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  634. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  635. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  636. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  637. .. |void| replace:: :abbr:`void (No return value.)`