Array of the names of all human muscle types defined by Mecanim.
function Start() { var muscleName: String[] = HumanTrait.MuscleName;
for (var i = 0; i < HumanTrait.MuscleCount; i++) { Debug.Log(muscleName[i]); } }
using UnityEngine; using System.Collections;
public class ExampleClass : MonoBehaviour { void Start() { string[] muscleName = HumanTrait.MuscleName; int i = 0; while (i < HumanTrait.MuscleCount) { Debug.Log(muscleName[i]); i++; } } }
Did you find this page useful? Please give it a rating: