Source
This page was generated with Wiki Builder. Do not change the format!
Info
Instanced items can have perks: benefits that the item bestows. These are related to DestinySandboxPerkDefinition, and sometimes - but not always - have human readable info. When they do, they are the icons and text that you see in an item's tooltip. Talent Grids, Sockets, and the item itself can apply Perks, which are then summarized here for your convenience.
Schema
- Schema Type: Class
- Type: object
- Component Type Dependency: ItemPerks
Properties
Name | Type | Description |
---|---|---|
perks | DestinyPerkReference[] | The list of perks to display in an item tooltip - and whether or not they have been activated. |
Example
{
// Type: DestinyPerkReference[]
"perks": [
// Type: DestinyPerkReference
{
// Type: Destiny.Definitions.DestinySandboxPerkDefinition:integer:uint32
"perkHash": 0,
// Type: string
"iconPath": "",
// Type: boolean
"isActive": false,
// Type: boolean
"visible": false
}
]
}