True & False
jstrahan
Member Posts: 498
can you change between true and false with math in gs using something like (x=0&1)
Comments
you can use something similar like modulus:
myCurrentState = (myCurrentState + 1)%2
which will toggle myCurrentState between 0 and 1.
GameSalad does not see 1 and 0 as true and false,
but you can still react to them in a similar way.