A fun game I made using Processing. You start with a board full of colours and your goal is to flood the board with just colour. Give it a try!
Processing 3 will work although it was made with Processing 2.
You have 3 possibilities:
- Play online here (I also made an html file with the game embedded)
- Download PC or Linux versions
- Clone repository and run from source code
You can easily change the number of moves you get. Just change the maxTurns
variable in FloodIt.pde
:
class FloodIt {
int x=0;
int y=0;
int c=6;
int counter = 0;
int turns = 0;
int maxTurns = 25; // HERE YOU CAN CHANGE THE MAX NUMBER OF MOVES
color c0= color(0) ;
boolean win = false;
This is me playing:
Well, it's not all fun and games ;)