var system;
var img;
function preload()
{
img = loadImage ( '/uploads/fordea23/Zod.jpg' );
}
// Cloned by Tony Forde on 28 Sep 2021 from World "One Cube World (P5)" by Starter user
// Please leave this clone trail here.
function setup() {
createCanvas ( ABWorld.fullwidth(), ABWorld.fullheight(), WEBGL );
}
function draw() {
background(11);
image(img, 0, 0);
filter(BLUR, 100);
texture(img);
box(200,200,200);
}