I’m trying to set a global variable to equal sunrise/sunset time, but this doesn’t seem to be possible through the UI, am I missing something?
The idea behind this is that I am setting up 6 time related globals: evening lights on, evening lights off, sunset offset, morning lights on, morning lights off, and sunrise offset. These variables will be used across all of my time based pistons and allow me to set, at a global level, time control for on/off times as well as offset from sunrise/sunset if needed. For the time being, I would like to set (global)EveningLightsOn = sunset + (global)SunsetOffset, and (global)MorningLightsOff = sunrise + (global)SunriseOffset, thus allowing me to simply use the global EveningLightsOn or MorningLightsOff in the piston without having to do the math there.
I realize that I can set local variables to equal sunrise/sunset, but that doesn’t allow me to update timing globally.