#just make the lighting layer invisible

1 messages · Page 1 of 1 (latest)

winter vapor
#

@haughty torrent here's a macro for you

canvas.layers.find(l=>l.name==='LightingLayer').visible=!canvas.layers.find(l=>l.name==='LightingLayer').visible
haughty torrent
#

Thank you. How would this work? I'd have to run this macro each time a scene is loaded?

winter vapor
#

could do this once at launch```js
Hooks.on('canvasReady', ()=>{
canvas.layers.find(l=>l.name==='LightingLayer').visible=false
});

which will hide the lighting layer each time the canvas loads
#

then have the other one as a toggle in case you need it back for some reason

haughty torrent
#

Nice, thank you. I will test tonight and report back.