Array of the names of all human bone types defined by Mecanim.
function Start() {
var boneName: String[] = HumanTrait.BoneName;
for (var i = 0; i < HumanTrait.BoneCount; i++) {
Debug.Log(boneName[i]);
}
}
no example available in C#