xxxxxxxxxx
34
function preload(){
room = loadImage("umad_.jpg")
}
function setup() {
cnv = createCanvas(400, 300);
centerCanvas();
mask_layer = createGraphics(width, height)
img = createImage(width,height)
}
function draw() {
if(frameCount % 300 == 0){
mask_layer.clear()
} mask_layer.circle(mouseX,mouseY,30)
img.copy(room,0,0,room.width,room.height,0,0,width,height)
img.mask(mask_layer)
image(img, 0, 0,width,height)
}
function centerCanvas() {
var x = (windowWidth - width) / 2;
var y = (windowHeight - height) / 2;
cnv.position(x, y);
}
function keyPressed(){
if(key == 's'){
saveGif("mask.gif",5)
}
}
function windowResized(){
centerCanvas()
}