diff --git a/modules/layered_tile_map/doc_classes/LayeredTileData.xml b/modules/layered_tile_map/doc_classes/LayeredTileData.xml index a2ac0b594..c64cd576e 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileData.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileData.xml @@ -1,5 +1,5 @@ - + Settings for a single tile in a [LayeredTileSet]. @@ -214,7 +214,7 @@ The [Material] to use for this [LayeredTileData]. This can be a [CanvasItemMaterial] to use the default shader, or a [ShaderMaterial] to use a custom shader. - + Color modulation of the tile. @@ -226,7 +226,7 @@ ID of the terrain set that the tile uses. - + Offsets the position of where the tile is drawn. @@ -246,4 +246,6 @@ + + diff --git a/modules/layered_tile_map/doc_classes/LayeredTileMap.xml b/modules/layered_tile_map/doc_classes/LayeredTileMap.xml index 0ade55c69..699463b15 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileMap.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileMap.xml @@ -1,5 +1,5 @@ - + Node for 2D tile-based maps. @@ -76,7 +76,7 @@ Clears cells that do not exist in the tileset. - + @@ -196,7 +196,7 @@ Returns the number of layers in the LayeredTileMap. - + @@ -239,7 +239,7 @@ - + Returns a [Vector2i] array with the positions of all cells containing a tile in the given layer. Tiles may be filtered according to their source ([param source_id]), their atlas coordinates ([param atlas_coords]) or alternative id ([param alternative_tile]). @@ -331,7 +331,7 @@ - + Sets the tile identifiers for the cell on layer [param layer] at coordinates [param coords]. Each tile of the [LayeredTileSet] is identified using three parts: @@ -445,7 +445,7 @@ If [param layer] is negative, the layers are accessed from the last one. - + diff --git a/modules/layered_tile_map/doc_classes/LayeredTileMapLayerGroup.xml b/modules/layered_tile_map/doc_classes/LayeredTileMapLayerGroup.xml index 518826098..f61e624f1 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileMapLayerGroup.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileMapLayerGroup.xml @@ -1,5 +1,5 @@ - + Groups a set of tile map layers together, allowing them to share a provided [LayeredTileSet]. @@ -9,9 +9,13 @@ + + The assigned [LayeredTileSet]. This LayeredTileSet will be applied to all child layers. + + diff --git a/modules/layered_tile_map/doc_classes/LayeredTileMapPattern.xml b/modules/layered_tile_map/doc_classes/LayeredTileMapPattern.xml index 4e79fccd9..4c7096769 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileMapPattern.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileMapPattern.xml @@ -1,5 +1,5 @@ - + Holds a pattern to be copied from or pasted into [LayeredTileMap]s. @@ -10,6 +10,12 @@ + + + + Returns whether the pattern is empty or not. + + @@ -50,12 +56,6 @@ Returns whether the pattern has a tile at the given coordinates. - - - - Returns whether the pattern is empty or not. - - @@ -68,7 +68,7 @@ - + Sets the tile identifiers for the cell at coordinates [param coords]. See [method LayeredTileMap.set_cell]. @@ -82,4 +82,6 @@ + + diff --git a/modules/layered_tile_map/doc_classes/LayeredTileSet.xml b/modules/layered_tile_map/doc_classes/LayeredTileSet.xml index 7a7024ab4..1e8c89a21 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileSet.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileSet.xml @@ -1,5 +1,5 @@ - + Tile library for tilemaps. @@ -612,16 +612,16 @@ - + For all half-offset shapes (Isometric, Hexagonal and Half-Offset square), changes the way tiles are indexed in the LayeredTileMap grid. - + For all half-offset shapes (Isometric, Hexagonal and Half-Offset square), determines the offset axis. The tile shape. - + The tile size, in pixels. For all tile shapes, this size corresponds to the encompassing rectangle of the tile shape. This is thus the minimal cell size required in an atlas. diff --git a/modules/layered_tile_map/doc_classes/LayeredTileSetAtlasSource.xml b/modules/layered_tile_map/doc_classes/LayeredTileSetAtlasSource.xml index f20968a5c..da7a51be5 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileSetAtlasSource.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileSetAtlasSource.xml @@ -1,5 +1,5 @@ - + Exposes a 2D atlas texture as a set of tiles for a [LayeredTileSet] resource. @@ -31,7 +31,7 @@ - + Creates a new tile at coordinates [param atlas_coords] with the given [param size]. @@ -161,7 +161,7 @@ - + Returns whether there is enough room in an atlas to create/modify a tile with the given properties. If [param ignored_tile] is provided, act as is the given tile was not present in the atlas. This may be used when you want to modify a tile's properties. @@ -175,8 +175,8 @@ - - + + Move the tile and its alternatives at the [param atlas_coords] coordinates to the [param new_atlas_coords] coordinates with the [param new_size] size. This functions will fail if a tile is already present in the given area. If [param new_atlas_coords] is [code]Vector2i(-1, -1)[/code], keeps the tile's coordinates. If [param new_size] is [code]Vector2i(-1, -1)[/code], keeps the tile's size. @@ -260,16 +260,18 @@ - + Margins, in pixels, to offset the origin of the grid in the texture. - + + + Separation, in pixels, between each tile texture region of the grid. The atlas texture. - + The base tile size in the texture (in pixel). This size must be bigger than the LayeredTileSet's [code]tile_size[/code] value. diff --git a/modules/layered_tile_map/doc_classes/LayeredTileSetScenesCollectionSource.xml b/modules/layered_tile_map/doc_classes/LayeredTileSetScenesCollectionSource.xml index 85566956a..84e74d2dc 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileSetScenesCollectionSource.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileSetScenesCollectionSource.xml @@ -1,5 +1,5 @@ - + Exposes a set of scenes as tiles for a [LayeredTileSet] resource. @@ -91,4 +91,6 @@ + + diff --git a/modules/layered_tile_map/doc_classes/LayeredTileSetSource.xml b/modules/layered_tile_map/doc_classes/LayeredTileSetSource.xml index ce127e10b..f7e9c2ea0 100644 --- a/modules/layered_tile_map/doc_classes/LayeredTileSetSource.xml +++ b/modules/layered_tile_map/doc_classes/LayeredTileSetSource.xml @@ -1,5 +1,5 @@ - + Exposes a set of tiles for a [LayeredTileSet] resource. @@ -59,4 +59,6 @@ + + diff --git a/modules/web/doc_classes/FileCache.xml b/modules/web/doc_classes/FileCache.xml index bb505dd4e..918e514a0 100644 --- a/modules/web/doc_classes/FileCache.xml +++ b/modules/web/doc_classes/FileCache.xml @@ -52,7 +52,7 @@ Returns the absolute path to a file if it exists in the given [member wwwroot]. If it doesn't exists returns an empty [String]. Guards against directory traversal. - Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg + Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg @@ -61,7 +61,7 @@ Returns the absolute path to a file in the given [member wwwroot]. Does not checks if the file exists or not. Returns an empty [String] on error. Guards against directory traversal. - Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg + Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg @@ -70,7 +70,7 @@ Check whether a file exists in the given [member wwwroot]. Guards against directory traversal. - Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg + Note: file path should be the url you want to access the file with, including lead slash. e.g. http://127.0.0.1/a/b/d.jpg -> /a/b/d.jpg diff --git a/modules/web/doc_classes/ListWebPage.xml b/modules/web/doc_classes/ListWebPage.xml index 249760da7..41f1ec42d 100644 --- a/modules/web/doc_classes/ListWebPage.xml +++ b/modules/web/doc_classes/ListWebPage.xml @@ -49,7 +49,7 @@ This many pagination links will be visible max. - + Whether to allow pagination or not.