SI 2018 - Health Catch
in Summer Institute / Student Work on Scratch, Processing, Java
Love what you see?
Check out their code on Scratch and Github.
PImage basket;
PImage vegetable;
PImage cheesePuff;
int score= 0;
//Instantiate objects
Bowl catcher = new Bowl();
Healthy kale = new Healthy();
Bad puff = new Bad();
//Initial setup
void setup(){
size(600,600);
basket = loadImage("basket.png");
vegetable = loadImage("Kale.png");
cheesePuff = loadImage("cheesePuff.png");
}
//Displays and runs the game
void draw(){
... //see all source code on GitHub