rustmotion 0.7.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Rule: Continuous Presets Need loop: true

The presets `pulse`, `float`, `shake`, and `spin` are continuous animations. Without `"loop": true`, they play once and stop.

**GOOD:**
```json
{ "style": { "animation": [{ "name": "float", "loop": true }] } }
```

**BAD:**
```json
{ "style": { "animation": [{ "name": "float" }] } }
```

Continuous presets: `pulse`, `float`, `shake`, `spin`.