public static string[] BoneName ;

Description

Array of the names of all human bone types defined by Mecanim.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { void Start() { string[] boneName = HumanTrait.BoneName; for (int i = 0; i < HumanTrait.BoneCount; ++i) { Debug.Log(boneName[i]); } } }