@awayjs/graphics
Version:
AwayJS graphics classes
21 lines (20 loc) • 512 B
JavaScript
/**
* A value obect representing a single joint in a skeleton object.
*
* @see away.animators.Skeleton
*/
var SkeletonJoint = /** @class */ (function () {
/**
* Creates a new <code>SkeletonJoint</code> object
*/
function SkeletonJoint() {
/**
* The index of the parent joint in the skeleton's joints vector.
*
* @see away.animators.Skeleton#joints
*/
this.parentIndex = -1;
}
return SkeletonJoint;
}());
export { SkeletonJoint };