# FStructAnimateValueSourceConfiguration

This page describes the FStructAnimateValueSourceConfiguration struct that ships with Motion. The structure describes the configuration of a value source.

### Members

`ShouldLoop`

**Type:** bool

**Description:** If true, the value source will loop when reaching the end of the curve.

`ShouldReverse`

**Type:** bool

**Description:** If true, the value source will play reverse when reaching the end of the curve.

### Behaviour Matrix

| ShouldLoop | ShouldReverse | Behaviour                                                                                                                |
| ---------- | ------------- | ------------------------------------------------------------------------------------------------------------------------ |
| false      | false         | The animation will play once until the end of the curve, then terminate.                                                 |
| true       | false         | The animation will play until the end of the curve, then jump back to the start, until terminated.                       |
| false      | true          | The animation will play until the end of the curve, then play in reverse until the start of the curve, then terminate.   |
| true       | true          | The animation will play until the end of the curve, then play in reverse until the start of the curve, until terminated. |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kia.dev/animate/architecture/fstructanimatevaluesourceconfiguration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
