Version 2 with more funny effect:

Original version:

Yet another music visualiser, using the Woo demo music by ZEP
P#24425 2016-07-03 11:13 ( Edited 2016-11-14 20:09)


You could make the dissolve "ease in" more gently by changing that loop to look like this:
for i=1,1024 do pset(rnd(128),64+sqrt(rnd(4096)),0) end |
You could also dissolve the colors instead of just setting pixels black:
local t={0,1,1,0,1,13,6,4,4,9,3,13,5,8,9} for i=1,1024 do local x=rnd(128) local y=64+sqrt(rnd(4096)) pset(x,y,t[pget(x,y)]) end |
I'm not sure if that's a better look, though. Sometimes the 'discrete' look is better on a platform like PICO-8.
P#24672 2016-07-05 21:07 ( Edited 2016-07-06 01:07)
[Please log in to post a comment]