Templates
Templates can be used to create shortcuts or presets for multiple tags. You define a new tag that gets replaced by some other tags before the text is processed by the animated text element.

The replacement is done in a pre-processing step via string replacement. It's simple but powerful.
Example
Let's start with a template like this:
Tag
angry
Opening Tag
<b><color="red"><shake>
Closing Tag
</shake></color></b>
If you use the tag like this:
Hey, I'm a <angry>very angry</angry> character! I bet you're <wiggle>scared</wiggle>.
The <angry>
and </angry>
tags will be replaced like this:
Hey, I'm a <b><color="red"><shake>very angry</shake></color></b> character! I bet you're <wiggle>scared</wiggle>.
Very intimidating. Since it's just string replacement, you can add any tags you want. Rich text tags, built-in animation tags, custom animations, etc.
Last updated
Was this helpful?