Files
artworld/sketch.js

20 lines
297 B
JavaScript
Raw Normal View History

2019-11-19 11:09:22 +01:00
var bg_image;
function preload(){
bg_image = loadImage('img/map.png');
}
function setup() {
//createCanvas(windowWidth,windowHeight);
}
function draw() {
background(52,60,78);
image(bg_image, 0,0, width, height);
}
function windowResized() {
resizeCanvas(windowWidth, windowHeight);
}