Is your feature request related to a problem? Please describe.
Ideally we would be able to use light groups as well as individual lights.
Describe the solution you'd like
Ideally we could have another structure of some kind where we store lights akin to:
pub enum LightEntities {
Light {...},
LightStrip {...}
}
LightGroup {
name: String,
lights: Vec<LightEntities>
}
Describe alternatives you've considered
There are a few ways to implement this. Unclear yet what to do specifically.
Is your feature request related to a problem? Please describe.
Ideally we would be able to use light groups as well as individual lights.
Describe the solution you'd like
Ideally we could have another structure of some kind where we store lights akin to:
Describe alternatives you've considered
There are a few ways to implement this. Unclear yet what to do specifically.