module

Visual Active Effects

Endorsements
2
Installs
2.16%
Comments
0
Latest version12.1.0
Minimum Core11
Compatible Core11
Last updated2 months ago
Created1 year 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.

  • 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
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x