- Joined
- Jan 13, 2017
- Messages
- 88
- Reaction score
- 11
- First Language
- French
- Primarily Uses
I got a big batch of switches, when one switch is ON, all the others need to be OFF.
Do you have tips on how to make this with not too much lines of code?
So far the only solution I have is a common event with conditionnal branches:
It's pretty tedious even if doable. If you guys have ideas I take them!
Do you have tips on how to make this with not too much lines of code?
So far the only solution I have is a common event with conditionnal branches:
Code:
if SwitchA = ON, then make SwitchB,C,D,E,F,G... OFF
if SwitchB = ON, then make SwitchA,C,D,E,F,G... OFF
etc...
It's pretty tedious even if doable. If you guys have ideas I take them!