20 lines
297 B
JavaScript
20 lines
297 B
JavaScript
|
|
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);
|
||
|
|
}
|