Version: 2022.3

LegDof.LastLegDof

切换到手册

描述

LegDof 枚举的最后一个值。

此值可在 for 循环中使用。

using UnityEngine;

using UnityEngine.Animations;

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