LastArmDof
The last value of the ArmDof enum.
Read time 1 minuteLast updated 9 days ago
Definition
- Type: Field
- Namespace: UnityEngine
- Assembly: UnityEngine.AnimationModule
LastArmDof = 9
Remarks
This value can be used in loops.
forExamples
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); } }}