xxxxxxxxxx
48
let cloud;
let cameraa;
let fruits;
let sunset;
function preload() {
cloud = loadImage('images/cloud_01.png');
cameraa = loadImage('images/camera 01.webp');
fruits = loadImage('images/fruits.png');
sunset = loadImage('images/sunset.png');
}
function setup() {
createCanvas(300, 200);
}
function draw() {
background(241, 232, 218);
//repeating clouds
filter(BLUR, 40);
imageMode(CENTER);
image(cloud, 50, 50, 250, 250);
imageMode(CENTER);
image(cloud, 75, 75, 250, 250);
imageMode(CENTER);
image(cloud, 100, 100, 250, 250);
imageMode(CENTER);
image(cloud, 125, 125, 250, 250);
//fruits
imageMode(CENTER);
image(fruits, 100, 150, 150, 150);
//sunset
imageMode(CENTER);
image(sunset, 250, 25, 250, 250);
//camera
imageMode(CENTER);
image(cameraa, 217.5, 115, 75, 50);
}