Version: 2021.1

BodyDof.LastBodyDof

切换到手册

描述

BodyDof 枚举的最后一个值。

此值可在 for 循环中使用。

using UnityEngine;

using UnityEngine.Animations;

public class ExampleClass : MonoBehaviour { void Start() { for (int i = 0; i < (int)BodyDof.LastBodyDof; ++i) { var handle = new MuscleHandle((BodyDof)i); Debug.Log(handle.name); } } }