module

Visual Active Effects

Endorsements
2
Installs
3.23%
Comments
0
Latest version14.0.3
Minimum Core14
Compatible Core14
Last updated3 months ago
Created3 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.

  • Double-clicking an effect will toggle it between enabled and disabled.
  • Right-clicking an effect will let you delete it. A GM can shift-right-click an effect for quick deletion.
  • Ctrl-double-clicking an effect will open its config.

System and Module Requirements

None.

For Module Developers

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.

Subscribe
Notify of
0 Comments
0
Would love your thoughts, please comment.x
()
x