Version: 2022.3
言語: 日本語

説明

The last value of the ArmDof enum.

This value can be used in for loops.

using UnityEngine;

using UnityEngine.Animations;

public class ExampleClass : MonoBehaviour { void Start() { for (int i = 0; i < (int)ArmDof.LastArmDof; ++i) { var handle = new MuscleHandle(HumanPartDof.LeftArm, (ArmDof)i); Debug.Log(handle.name); } } }