I'm actually building my turn base card game, with REX chess plugin.
As in the demo, i put a structure like this
deckboard with boolean variable called turn
IF TURN-->
player 1 select his cards (touch event) and plays them
ELSE
player 2 do the same with his cards
The problem is that during TURN player 1 can also select and play player 2 cards
This is not happening in other turn, O_o
Player 2 can't select player 1 cards...
Seems that events events after ELSE are triggered even if it shouldn't
I'm really confused...
Any suggestion is really much appreciated!