#just make the lighting layer invisible
1 messages · Page 1 of 1 (latest)
@haughty torrent here's a macro for you
canvas.layers.find(l=>l.name==='LightingLayer').visible=!canvas.layers.find(l=>l.name==='LightingLayer').visible
Thank you. How would this work? I'd have to run this macro each time a scene is loaded?
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
Nice, thank you. I will test tonight and report back.