OBJECT

HeroSkeleton

Represents a Hero skeleton.

link GraphQL Schema definition

1type HeroSkeleton {
2
3# List of x,y offsets for the assets to be properly composited on this skeleton.
4assetPositions: [HeroAssetPosition!]!
5
6# URI to the color mask for the skeleton.
7colorMaskURI: String!
8
9# The UUID for this skeleton.
10id: ID!
11
12# URI to the line art for the skeleton.
13lineArtURI: String!
14
15}