Legacy Documentation: Version 5.6 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

HumanTrait.MuscleName

public static string[] MuscleName;

Description

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

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++; } } }