| Latest version | 14.0.3 |
|---|---|
| Minimum Core | 14 |
| Compatible Core | 14 |
| Last updated | 3 months ago |
| Created | 3 years ago |
| Authors |
|
| Languages |
Deutsch English Italiano Polski Português (Brasil) Čeština 中文(简体) |
| Systems |
Dnd5e |
| Project source | Project URL |
| Report bugs | Bug tracker URL |
| Read-me | Readme URL |
| Changelog | Changelog URL |
| License | License URL |
Visualize your active effects.
While the module is enabled, all temporary effects (including status conditions) affecting your current token will be displayed in the top right.

None.
Visual Active Effects supports adding your own buttons into the descriptions. You can hook into the template data creation using the hook "visual-active-effects.createEffectButtons" and push your button to the array. Example that creates a toggle button in a description, only if the effect is named 'Steve':
Hooks.on("visual-active-effects.createEffectButtons", function(eff, buttons){
if (eff.name === "Steve") {
buttons.push({
label: "Toggle",
callback: function(){
eff.update({ disabled: !eff.disabled });
}
});
}
});
Interested in following along with development of any of my modules? Join the Discord server.
To install this package, open your Foundry Setup screen and navigate to your Module tab and click the Install Module button.
From there, you can either search for the package unique name: visual-active-effects or copy its manifest URL:
And paste it to the input box at the bottom of your window.

You can install this package directly to your Forge account.