Latest version | 12.1.4 |
---|---|
Minimum Core | 12 |
Compatible Core | 12 |
Last updated | 6 days ago |
Created | 2 years ago |
Authors |
|
Languages |
Deutsch English Polski Português (Brasil) Česky 中文(简体) |
Systems |
Dnd5e |
Project source | Project 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.
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Advertisement cookies are used to deliver visitors with customized advertisements based on the pages they visited before and analyze the effectiveness of the ad campaign.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.