SalieriC / SWADE-Spices-Flavours

A theme editor for the SWADE System on Foundry VTT.
GNU General Public License v3.0
4 stars 3 forks source link

Add an option that change the pause icon #51

Open montver opened 3 years ago

montver commented 3 years ago

I think it would be nice to have an option to change the pause icon to customize the different settings in SWADE. Thanks for your job Salieric & Javier!

randyrosales commented 2 years ago

Hi, Salieri, this is the code to change the pause icon, you can execute it in your initial js of the module.

Hooks.on("renderPause", (app, html, options) => {
  if (options.paused) {
    html.find("img")[0].src = URL_TO_YOUR_IMAGE
  }
});