# Animations

Animations cycle text frames in text displays. Saved in `animations/<name>.json`. Apply via GUI (planned) or manual reference in text lines.

## Format

```json
{
  "frames": [
    // Array of text frames
    "Loading.",
    "Loading..",
    "Loading..."
  ],
  "interval": 10 // Ticks between frames (default 20)
}
```

## Properties

* **frames**: List of strings (each frame's text, supports formatting).
* **interval**: Int (ticks; lower for faster animation).

## Example

`animations/loading.json`:

```json
{
  "frames": ["Frame 1", "Frame 2"],
  "interval": 40
}
```

To use: In text display lines, reference animation (future feature; currently manual cycling via updateRate).


---

# 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://holodisplays.furq.dev/configuration/animations.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.
