trying to make "actions in one event with different sub events which are based on test of bool. and it doesn't work if it in one event. could somebody explain me why? thanks a lot
i mean using of touch and gamepad at the same time
Develop games in your browser. Powerful, performant & highly capable.
Could you show us your events?
yes by link
ex.ua/449266243268
i think i don't understand this sub-events conditions. i'm testing for local bool in sprite "button"
Construct2 reads from top to bottom, so the if button is off - set button to on is followed by if button is on - set button to off, that way it always stays off. replace the if button is on by a system else and all should work.
You could also use a sprite toggle boolean action on the top-event and change the subevents to check the boolean and set the visibility.
Great great thanks! i've already forget about this