HumanTrait.BoneName
static var BoneName: string[];
Description

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]);
	}
}