OBJECT
HeroAssetPosition
Represents the position of an asset relative to a skeleton.
link GraphQL Schema definition
1 type HeroAssetPosition { 2 3 # Which type of asset this position refers to. 4 : HeroAssetType! 5 6 # x coordinate of the position. 7 : Int! 8 9 # y coordinate of the position. 10 : Int! 11 12 }