[img]
small 233b demo with procedural sprites.
a={}
b={}
z=300
for i=0,z do
a[i]=rnd(125)
b[i]=-rnd(300)
end
for i=0,2000 do
d=rnd(i%32)%12sin(i/12)
poke2(0+i,dd)
end
function _update()
cls()
for i=0,z do
f=b[i]
spr(i%20,a[i],f)
f+=1+i%5
if(f>125)then
f-=250
end
b[i]=f
end
end
[Please log in to post a comment]