So glad I added filters! I'm able to just drop into L5 and work on some interactive artworks.
I started with some of the source images from the previous artwork I was working on, but made a different kind of variation. I may actually like this one better.
Code:
require("L5")
function setup()
--size(400, 400)
fullscreen(true)
windowTitle("The L5 logo")
imageMode(CENTER)
face={}
for i=1,30 do
face[i] = loadImage("face/"..i..".png")
end
drawFaces()
frameRate(1.7)
end
function draw()
drawFaces()
filter(THRESHOLD)
end
function mousePressed()
end
function drawFaces()
for i=1,100 do
image(random(face),random(height),random(height),width,height)
end
end
