HumanTrait.BoneName

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

Did you find this page useful? Please give it a rating: