Just a sitenote, there are also if statements that you can use to switch variables (like if they are not bool):
variable = (variable == 0) ? 5 : 0;
this will return 5 if variable was 0 before, or 0 if variable is not 0 before.
Just a sitenote, there are also if statements that you can use to switch variables (like if they are not bool):
variable = (variable == 0) ? 5 : 0;
this will return 5 if variable was 0 before, or 0 if variable is not 0 before.