xxxxxxxxxx
//Exercise 6: Paige Barrett
// I chose to use the preload function to add a picture of a haunted house to my sketch for Halloween
// To interact with this image you can press anywhere on the canvas and invert the colours of the house, very spooky
let house;
function preload() {
house = loadImage("halloween-2691540.png");
}
function setup() {
createCanvas(house.width, house.height);
background(0);
}
function draw() {
image(house, 1050, height / 2.41, house.width / 5.9, house.height / 5.9);
}
function mousePressed() {
house.filter(INVERT);
}