Register

Visual Active Effects

An Add-on Module for Foundry Virtual Tabletop

Author: Zhell Project Source Foundry Versions 10 to 13 (Verified 13) Last Updated 3 weeks, 5 days ago

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.

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.

Categories

Available Versions

  1. Version 13.0.5

    3 weeks, 5 days ago
    Foundry Version 13 - 13 (Verified 13) Manifest URL Read Notes
  2. Version 13.0.4

    1 month ago
    Foundry Version 13 - 13 (Verified 13) Manifest URL Read Notes
  3. Version 13.0.3

    1 month, 3 weeks ago
    Foundry Version 13 - 13 (Verified 13) Manifest URL Read Notes
  4. Version 13.0.2

    4 months ago
    Foundry Version 13 - 13 (Verified 13) Manifest URL Read Notes
  5. Version 12.1.5

    10 months ago
    Foundry Version 12 - 12 (Verified 12) Manifest URL Read Notes
  6. Version 12.0.0

    1 year, 4 months ago
    Foundry Version 12 - 12 (Verified 12) Manifest URL Read Notes
  7. Version 11.1.4

    1 year, 4 months ago
    Foundry Version 11 - 12 (Verified 11) Manifest URL Read Notes
  8. Version 11.0.6

    1 year, 9 months ago
    Foundry Version 11 - 11 (Verified 11) Manifest URL Read Notes
  9. Version 10.0.18

    2 years, 5 months ago
    Foundry Version 10 - 10 (Verified 10.291) Manifest URL Read Notes