Source
This page was generated with Wiki Builder. Do not change the format!
Info
Instanced items can have sockets, which are slots on the item where plugs can be inserted. Sockets are a bit complex: be sure to examine the documentation on the DestinyInventoryItemDefinition's "socket" block and elsewhere on these objects for more details.
Schema
- Schema Type: Class
- Type: object
- Component Type Dependency: ItemSockets
Properties
Name | Type | Description |
---|---|---|
sockets | DestinyItemSocketState[] | The list of all sockets on the item, and their status information. |
Example
{
// Type: DestinyItemSocketState[]
"sockets": [
// Type: DestinyItemSocketState
{
// Type: Destiny.Definitions.DestinyInventoryItemDefinition:integer:uint32:nullable
"plugHash": 0,
// Type: boolean
"isEnabled": false,
// Type: integer:int32[]
"enableFailIndexes": [
// Type: integer:int32
0
],
// Type: Destiny.Definitions.DestinyInventoryItemDefinition:integer:uint32[]
"reusablePlugHashes": [
// Type: integer:uint32
0
]
}
]
}