Version: 2022.3
언어: 한국어
public static string[] BoneName ;

설명

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