Construct goes through the event list from top to bottom and checks if the condition is true, otherwise it ignores it.
(event 1)
+ if switch is 1
-> say "1"
(event 2)
+ if switch is 2
-> set switch to 1
-> say "2"
-> set switch to 2
My expectation would be (when switch = 2) what construct would do:
- ignore event 1
- go inside event 2, change switch to 1
- say "2"
- set switch to 2
Screen result: "2".
But when I preview this, it seems to also do something with event 1!
I don't understand this.
(using v0.99.84)