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: Use vertical_align Correctly in Shape Text

The `vertical_align` property in shape embedded text accepts only `"top"`, `"middle"`, or `"bottom"`. The value `"center"` is **NOT valid**.

**BAD:**
```json
{ "text": { "content": "Click me", "vertical_align": "center" } }
```

**GOOD:**
```json
{ "text": { "content": "Click me", "vertical_align": "middle" } }
```

Default is `"middle"`, so you can omit it for centered text.