Get Power Slug

Get a list of all power slugs.

Response Body

Name Type Description

ID

String

Unique ID of the Power Slug.

Name

String

Name of the Power Slug.

ClassName

String

Class Name of the Power Slug.

location

Object

{key-description}

  x

Float

X Location in the World.

  y

Float

Y Location in the World.

  z

Float

Z Location in the World.

  rotation

Float

Rotation of the Actor (0 - 359, 0 = North, 90 = East, 180 = South, 270 = West).

features

Object

An object with actor coordinates and name information.

  properties

Object

Name information about the actor.

    name

String

Display Name of the Actor.

    type

String

Type of the Object.

  geometry

Object

Geometry information about the Actor.

    coordinates

Object

The Actor coordinates.

      x

Float

X Location of the Actor.

      y

Float

Y Location of the Actor.

      z

Float

Z Location of the Actor.

    type

String

It’s always "Point".

Example Response

[
  {
    "ID": "BP_Crystal27_27",
    "Name": "Blue Power Slug",
    "ClassName": "BP_Crystal_C",
    "location": {
      "x": -54543.35546875,
      "y": 270830.1875,
      "z": -1451.72412109375,
      "rotation": 232.89628601074219
    },
    "features": {
      "properties": {
        "name": "Blue Power Slug",
        "type": "Power Slug"
      },
      "geometry": {
        "coordinates": {
          "x": -54543.35546875,
          "y": 270830.1875,
          "z": -1451.72412109375
        },
        "type": "Point"
      }
    }
  },
  {
    "ID": "BP_Crystal3_3",
    "Name": "Blue Power Slug",
    "ClassName": "BP_Crystal_C",
    "location": {
      "x": -64958.64453125,
      "y": 268214,
      "z": -3016.97998046875,
      "rotation": 115.72634887695312
    },
    "features": {
      "properties": {
        "name": "Blue Power Slug",
        "type": "Power Slug"
      },
      "geometry": {
        "coordinates": {
          "x": -64958.64453125,
          "y": 268214,
          "z": -3016.97998046875
        },
        "type": "Point"
      }
    }
  }
]