> For the complete documentation index, see [llms.txt](https://docs.febucci.com/text-animator-godot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.febucci.com/text-animator-godot/effects/add-effects-to-your-texts/modifiers.md).

# Modifiers

**Modifiers let you change the characteristics of your effects individually**, and can be used in all effects categories.

<details>

<summary>Example: make an effect three time stronger than default</summary>

You could have an effect that is stronger than the previous one, but still in the same dialogue line, like “I was `<wiggle>`strong`</wiggle>`… but now I’m`<wiggle a=3>` three times stronger`</wiggle>`!!!”

<figure><img src="/files/FfPBgZEAnpqz0YNoMPfo" alt=""><figcaption></figcaption></figure>

</details>

“**Modifiers**” **multiply the relative value;** this way you can easily know how much stronger/weaker a modified effect will result compared to the base one *(for this reason, a modifier of “1” will return the same result of a base value)*.

All Modifiers are structured like this: **`[effectID modifierID=modifierValue]`** and you can also use multiple of them separated by a space (eg. `[wiggle a=2 f=4]`).

You can read a list of all the available modifiers for each effect: [Built-in effects list](/text-animator-godot/effects/built-in-effects-list.md)

* Example for Appearances effects: `{fade d=3}`.

Some extra notes:

{% hint style="warning" %}
If you write identical attributes in the same rich text tag, only the last one will take effect.

***

Example: "`[wiggle f=1 a=2 a=3]`" is the same as writing "`[wiggle f=1 a=3]"`, as the first "a" attribute gets overwritten by the last.&#x20;
{% endhint %}

{% hint style="danger" %}
Be sure to remove spaces between the modifierID, the ‘=’ symbol and its value

***

* ❌ Wrong: `[wiggle f = 3]`
* ✅ Correct: `[wiggle f=3]`
  {% endhint %}

You can also use modifiers for default effects!

<figure><img src="/files/NzDdRF3bD7PcPbtXQO2H" alt=""><figcaption><p>Modifiers applied to a fallback effect</p></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.febucci.com/text-animator-godot/effects/add-effects-to-your-texts/modifiers.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
