OBJECT

GameMap

A single map for the game.

link GraphQL Schema definition

  • type GameMap {
  • # The ID of the map.
  • id: Int!
  • # The localized name of the map. Will be null if no localization information
  • # exists for the map.
  • name: String
  • # The image for the map. Will be null if no file information exists for the map.
  • filename: String
  • # The scale factor for the map.
  • sizeFactor: Int
  • # The x offset for the map.
  • offsetX: Int
  • # The y offset for the map.
  • offsetY: Int
  • }