reset filter
Moderator: MADRIX Team
reset filter
I'd like to have a storage place macro reset the main output color filter.
I tried SetFilter(FILTER_NONE); or Filter(FILTER_NONE); in PostRenderEffect but it seems to not do anything.
Is that possible at all?
I tried SetFilter(FILTER_NONE); or Filter(FILTER_NONE); in PostRenderEffect but it seems to not do anything.
Is that possible at all?
Re: reset filter
Yes, from a storage place macro you have no access to the mainout filter. There is general no access to the controls from the mainout section except from the mainout macro themself.
LEDs are nothing without control
Re: reset filter
alright...
What if I create a main otput macro that checks if the active storage place is my "reset button" (assumingly A1) and only then resets the filter? Would that be possible and would that cause performance issues?
What if I create a main otput macro that checks if the active storage place is my "reset button" (assumingly A1) and only then resets the filter? Would that be possible and would that cause performance issues?
Re: reset filter
Yes with GetStoragePlace you can ask which place is the current on the storage and no there is no performance issue if you set the filter only if the storage place changes.
LEDs are nothing without control
Re: reset filter
Seems like it is better to also check if the filter is already "white", otherwise the filter button is flickering from being set to white continously.