# LastArmDof

> The last value of the ArmDof enum.

## Definition

* **Type:** Field
* **Namespace:** [UnityEngine](/engine/6000.3/script-reference/unityengine.md)
* **Assembly:** UnityEngine.AnimationModule

```csharp
LastArmDof = 9
```

### Remarks

This value can be used in `for` loops.

### Examples

```csharp
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);
        }
    }
}
```
