today, after much thought on how to implement, I've decided to tackle adding filters to the scopes. After jotting my ideas down on paper and coming up with a plan of action for it I've come up with the following:
- I didn't want a 'fixed' color filter. That does no good when the lighting conditions change. Filter has to be color changeable on the fly
- user should be able to turn filter on/off
Based on those ideas I'm going to implement a filter for each scope that you define the color of and the opacity (alpha) via input boxes. You would have something like:
Filter
Enabled: (checkbox)
Red: ____ |------|
Green: ____ | |
Blue: ____ | color |
Alpha: ____ |_____|
where color would be the color result of those input boxes so you can see what color you're defining and it's opacity.
Sound OK?