Get Unlock Items
|
This endpoint runs in game thread. |
Gets a list of unlockable actors that unlock song tapes, player helmets and customizations.
Response Body
| Name | Type | Description |
|---|---|---|
ID |
String |
Unique ID of the Unlockable Actor. |
Name |
String |
Name of the Unlockable Actor. |
ClassName |
String |
ClassName of the Unlockable Actor. |
Unlocks |
Object |
Object of the Unlockables. |
Name |
String |
Name of the Unlockable. |
ClassName |
String |
ClassName of the Unlockable. |
location |
Object |
Location details of the Unlockable Actor. |
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_TapePickup3",
"Name": "BP_TapePickup3",
"ClassName": "BP_TapePickup3",
"location": {
"x": -125140,
"y": 168530,
"z": -6120,
"rotation": 350.000427246094
},
"Unlocks": [
{
"Name": "Deep Rock Galactic",
"ClassName": "Tape_DeepRockGalactic_C"
}
],
"features": {
"properties": {
"name": "Deep Rock Galactic",
"type": "Cassette Tape"
},
"geometry": {
"coordinates": {
"x": -125140,
"y": 168530,
"z": -6120
},
"type": "Point"
}
}
},
{
"ID": "BP_UnlockPickup_Customization_C_UAID_40B076DF2F796CF701_1075566000",
"Name": "BP_UnlockPickup_Customization_C_UAID_40B076DF2F796CF701_1075566000",
"ClassName": "BP_UnlockPickup_Customization_C_UAID_40B076DF2F796CF701_1075566000",
"location": {
"x": -160356,
"y": 66416,
"z": 3980,
"rotation": 203.846278676476
},
"Unlocks": [
{
"Name": "Desc_Helmet_Beta_C",
"ClassName": "Desc_Helmet_Beta_C",
"Description": "Desc_Helmet_Beta_C"
}
],
"features": {
"properties": {
"name": "Desc_Helmet_Beta_C",
"type": "Player Customization"
},
"geometry": {
"coordinates": {
"x": -160356,
"y": 66416,
"z": 3980
},
"type": "Point"
}
}
}
]