OBJECT

HeroAssetPosition

Represents the position of an asset relative to a skeleton.

link GraphQL Schema definition

1type HeroAssetPosition {
2
3# Which type of asset this position refers to.
4assetType: HeroAssetType!
5
6# x coordinate of the position.
7x: Int!
8
9# y coordinate of the position.
10y: Int!
11
12}