Giter VIP home page Giter VIP logo

Comments (4)

Aedif avatar Aedif commented on September 10, 2024 1
const filterId = 'glow';

for(const token of canvas.tokens.controlled) {
  if(TokenMagic.hasFilterId(token, filterId)) {
    TokenMagic.deleteFilters(token, filterId);
  } else {
    const preset = TokenMagic.getPreset(filterId);
    if(preset) {
      TokenMagic.addUpdateFilters(token, preset);
    }
  }
}

from tokenmagic.

DeviousHearts avatar DeviousHearts commented on September 10, 2024

Thank you so much! Where would I put the parameters in this to change color and such? I needed it to be a slower blue glow.

from tokenmagic.

DeviousHearts avatar DeviousHearts commented on September 10, 2024

EUREKA!!! I got it. It is a toggle that combines three animations all at once and each is animated!


   const myTokens = canvas.tokens.controlled;

   for (const myToken of myTokens ){
       if (myToken.TMFXhasFilterId("BlueGlow")) {
           await myToken.TMFXdeleteFilters("BlueGlow");
       } else {
           let params =
           [{
   filterType: "outline",
   filterId: "BlueGlow",
   padding: 10,
   color: 0xc4c4FF,
   thickness: 1,
   quality: 5,
   zOrder: 9,
   animated :
   {
      thickness: 
      { 
         active: true,
         loopDuration: 6000,
         animType: "syncCosOscillation",
         val1: 1, 
         val2: 6
      }
   }
},
{
   filterType: "glow",
   filterId: "BlueGlow",
   outerStrength: 5,
   innerStrength: .5,
   color: 0x9999FF,
   quality: 0.5,
   padding: 10,
   animated:
   {
      outerStrength: 
      {
         active: true, 
         loopDuration: 3000, 
          animType: "colorOscillation", 
          val1:30, 
          val2:1
        }
    }
},
{
    filterType: "adjustment",
    filterId: "BlueGlow",
    saturation: 1,
    brightness: 1.5,
    contrast: 1.2,
    gamma: 1,
    red: 1,
    green: 1,
    blue: 1.25,
    alpha: 1.25,
    animated:
    {
        brightness: 
        { 
           active: true, 
           loopDuration: 3000, 
           animType: "syncCosOscillation",
           val1: 1.5,
           val2: 5 }
    }
}
];
           await myToken.TMFXaddUpdateFilters(params);
       }
   }
};

glowFunc();```

from tokenmagic.

DeviousHearts avatar DeviousHearts commented on September 10, 2024

Now if I can only figure out how to make the token actually emit light on the canvas at the same time and toggle off as well, I will be set! :)

from tokenmagic.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.