I would like an element in my visu to be only visible when a certain Variable is true, currently it is only capable of being normally visible and then invisible if a certain variable is true. Is this possible without programming a new variable to be the opposite of my desired control variable?
Hello
I would like an element in my visu to be only visible when a certain Variable is true, currently it is only capable of being normally visible and then invisible if a certain variable is true. Is this possible without programming a new variable to be the opposite of my desired control variable?
Thanks.
You can use Not(Variable) in that Invisible spot.
Example if you want it to be invisible when the bool is false then:
Not(True) = False
Not(False) = True