Get Space Elevator
Get a list of all space elevators.
Response Body
| Name | Type | Description |
|---|---|---|
ID |
String |
Unique ID of the Space Elevator. |
Name |
String |
Name of the Space Elevator. |
ClassName |
String |
ClassName of the Space Elevator. |
location |
Object |
Location details of the Space Elevator. |
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). |
ColorSlot |
Object |
Color/Decoration information about the Actor. |
PrimaryColor |
String |
Hex Code of Primary Color |
SecondaryColor |
String |
Hex Code of Secondary Color |
BoundingBox |
Object |
Bounding Box information about the Actor. |
min |
Object |
The minimum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
max |
Object |
The maximum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
CurrentPhase |
Object[] |
A list of required items for the current phase. |
Name |
String |
Name of the item. |
ClassName |
String |
Class Name of the item. |
Amount |
Integer |
Amount of the item. |
MaxAmount |
Integer |
Stack size of the item. |
RemainingCost |
Integer |
Remaining items to complete the phase item. |
TotalCost |
Integer |
Total item amount required to complete the phase item. |
FullyUpgraded |
Boolean |
|
UpgradeReady |
Boolean |
|
BoundingBox |
Object |
Bounding Box information about the Actor. |
min |
Object |
The minimum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
max |
Object |
The maximum boundary of the bounding box in the corresponding axis. |
x |
Float |
Value along the X-axis. |
y |
Float |
Value along the Y-axis. |
z |
Float |
Value along the Z-axis. |
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": "Build_SpaceElevator_C_2147473454",
"Name": "Space Elevator",
"ClassName": "Build_SpaceElevator_C",
"location": {
"x": -64008.390625,
"y": 249982.640625,
"z": -3758.981689453125,
"rotation": 90
},
"CurrentPhase": [
{
"Name": "Nuclear Pasta",
"ClassName": "Desc_SpaceElevatorPart_9_C",
"Amount": 1,
"RemainingCost": 999,
"TotalCost": 1000
},
{
"Name": "Biochemical Sculptor",
"ClassName": "Desc_SpaceElevatorPart_10_C",
"Amount": 0,
"RemainingCost": 1000,
"TotalCost": 1000
},
{
"Name": "AI Expansion Server",
"ClassName": "Desc_SpaceElevatorPart_12_C",
"Amount": 0,
"RemainingCost": 256,
"TotalCost": 256
},
{
"Name": "Ballistic Warp Drive",
"ClassName": "Desc_SpaceElevatorPart_11_C",
"Amount": 0,
"RemainingCost": 200,
"TotalCost": 200
}
],
"FullyUpgraded": false,
"UpgradeReady": false,
"features": {
"properties": {
"name": "Space Elevator",
"type": "Space Elevator"
},
"geometry": {
"coordinates": {
"x": -64008.390625,
"y": 249982.640625,
"z": -3758.981689453125
},
"type": "Point"
}
}
}
]