bungie-net-core
Version:
An easy way to interact with the Bungie.net API
37 lines (36 loc) • 1.53 kB
TypeScript
/**
* Bungie.Net API
* These endpoints constitute the functionality exposed by Bungie.net, both for more traditional website functionality and for connectivity to Bungie video games and their related functionality.
*
* Contact: support@bungie.com
*
* NOTE: This class is auto generated by the bungie-net-core code generator program
* Repository: {@link https://github.com/owens1127/bungie-net-core}
* Do not edit these files manually.
*/
/**
* Raw data about the customization options chosen for a character's face and
* appearance.
*
* You can look up the relevant class/race/gender combo in
* DestinyCharacterCustomizationOptionDefinition for the character, and then look
* up these values within the CustomizationOptions found to pull some data about
* their choices. Warning: not all of that data is meaningful. Some data has useful
* icons. Others have nothing, and are only meant for 3D rendering purposes (which
* we sadly do not expose yet)
* @see {@link https://bungie-net.github.io/#/components/schemas/Destiny.Character.DestinyCharacterCustomization}
*/
export interface DestinyCharacterCustomization {
readonly personality: number;
readonly face: number;
readonly skinColor: number;
readonly lipColor: number;
readonly eyeColor: number;
readonly hairColors: number[];
readonly featureColors: number[];
readonly decalColor: number;
readonly wearHelmet: boolean;
readonly hairIndex: number;
readonly featureIndex: number;
readonly decalIndex: number;
}