xxxxxxxxxx
27
/*
Meme project - version 2
by Gal Ben Baruch
*/
var img;
var x = 100;
var y = 400;
function preload(){
img = loadImage("why meme.png");
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(20);
stroke('black');
text('Gets attacked by hostile enemy that flees when it is about to die', 10, 10, y);
text('Me:', 10, 60, width);
image(img, 0, x, y, height-x );
}