xxxxxxxxxx
21
let img;
let vid;
function preload() {
img = loadImage('random.png');
}
function setup() {
createCanvas(400, 400);
let otherImg = createImg('random.png');
vid = createVideo('360video.mp4');
vid.loop();
otherImg.hide();
vid.hide();
}
function draw() {
background(220);
// image(img, 0, 0, 2000, 2000);
image(vid, 0, 0);
}