Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

TokenMod - Is there a way to control the low light brightness slider ?

1670511852
Yui V.
Pro
Sheet Author
Hello, I'm discovering TokenMod and it's awesome! I have a question though: Is there an attribute to --set the value of the brightness slider for low light? I'm trying to make a macro that sets brightness to minimum on the main sources of light so that the map appears to be at night. Right now I'm managing it with light_color to black, but I wonder if there's a brightness slider property? (by the way, is there a way to toggle the black tint on and off(transparent to black)? the "!" doesn't work it seems) Thank you !
1670516191

Edited 1670516213
set low_light_opacity| <a number between 1 and 100> I have a token called Ambient_Light that I use to illuminate maps when Daylight Mode isn't appropriate. I place several of these tokens around the map  on the DL layer in various locations to cancel out shadows and make sure that light shines directly through windows. I then use the following scripts to switch between daylight and evening. (For some reason I found that I needed to  "zero out" the form of light that was not being used) Macro name: Set-Ambient-Light-Daylight !token-mod {{ --set     emits_bright_light|on     bright_light_distance|75     emits_low_light|off     low_light_opacity|100     low_light_distance|75     light_color|transparent --ids @{Ambient_Light|character_id} }} Macro name:Set-Ambient-Light-Evening !token-mod {{   --set     emits_bright_light|off     bright_light_distance|0     emits_low_light|on     low_light_opacity|20     low_light_distance|75     light_color|transparent --ids @{Ambient_Light|character_id} }}
1670613740
Yui V.
Pro
Sheet Author
Thanks ! That's what I was searching for! perfect