I have an OnStart of
Set(multiMode,false);
In my Scene, I have a Button with Fill
If(
multiMode = false,
RGBA(0,0,0,1),
RGBA(255,0,0,1)
)
I have a Label verifying the value of "multiMode" is "false", yet the Button has Color RGBA(255,0,0,1).
Why is this happening?