A tokimeki memorial-like background
function _init()s=8 end
function _update60()s=(s-.25)%8 end
function _draw()
cls(7)
for i=-2,17 do for j=-2,17 do
if(i+j)%2==0 then
x=flr(s)+i*8
y=j*8-flr(s)
rectfill(x,y,x+7,y+7,12)
rectfill(x+8,y+1,x+8,y+7,1)
rectfill(x+1,y+8,x+8,y+8,1)
end
end end
end #PICO8
12 days ago