Package net.runelite.api
Interface Skeleton
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCount()the number of bones in the Skeletonint[][]getList()Each bone is linked to a list of vertex skins.int[]getTypes()the transform type of each bone The possible transform types are as follows: 0 (set pivot point) 1 (translate/move) 2 (rotate) 3 (scale) 5 (alpha/transparency)-
Methods inherited from interface net.runelite.api.Node
getHash, getNext, getPrevious
-
-
-
-
Method Detail
-
getCount
int getCount()
the number of bones in the Skeleton
-
getTypes
int[] getTypes()
the transform type of each bone The possible transform types are as follows: 0 (set pivot point) 1 (translate/move) 2 (rotate) 3 (scale) 5 (alpha/transparency)
-
getList
int[][] getList()
Each bone is linked to a list of vertex skins. [bone id][list of vertex skins] if a vertex's skin is linked to a bone, the vertex can be transformed by that bone.
-
-