---
title: animatedValueType
framework: realitykit
role: symbol
role_heading: Instance Property
path: realitykit/entityaction/animatedvaluetype
---

# animatedValueType

A value that defines the type that the action animates, if the action animates a target value.

## Declaration

```swift
var animatedValueType: (any AnimatableData.Type)? { get }
```

## Discussion

Discussion In your implementation, return a type that matches the action animation’s bind target. For example if the action animates a Transform, return Transform.self in your implementation, and set the action animation’s bind target to  BindTarget.transform when creating an AnimationResource with AnimationResource.makeActionAnimation(...).
