GW2v2ContinentFloor

@Serializable
data class GW2v2ContinentFloor(val id: Int, val textureDims: List<Int>, val clampedView: List<List<Int>>? = null, val regions: Map<Int, GW2v2ContinentFloor.Region>)

Information about a continent floor.

Parameters

id

the floor's ID

textureDims

the width and height of the texture

clampedView

a rectangle of downloadable textures (Every tile coordinate outside this rectangle is not available on the tile server.)

regions

the floor's regions

Constructors

Link copied to clipboard
constructor(id: Int, textureDims: List<Int>, clampedView: List<List<Int>>? = null, regions: Map<Int, GW2v2ContinentFloor.Region>)

Types

Link copied to clipboard
@Serializable
data class Region(val id: Int, val name: String, val labelCoord: List<Double>, val continentRect: List<List<Int>>, val maps: Map<Int, GW2v2ContinentFloor.Region.GameMap>)

Information about a region.

Properties

Link copied to clipboard
@SerialName(value = "clamped_view")
val clampedView: List<List<Int>>? = null

This field holds a rectangle of downloadable textures (Every tile coordinate outside this rectangle is not available on the tile server.).

Link copied to clipboard
val id: Int

This field holds the floor's ID.

Link copied to clipboard

This field holds the floor's regions.

Link copied to clipboard
@SerialName(value = "texture_dims")
val textureDims: List<Int>

This field holds the width and height of the texture.