SI 2018 - Health Catch

As an introduction to programming, this group from the 2018 Summer Honors Institute @ LIU developed a game to encourage healthy eating.

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

© 2020. Some rights reserved.