Pico Planet 1k
- September 30, 2023
- sizescape
A terrain generator and globe visualizer in just 1023 characters of Pico-8, created for the 2023 PICO-1k jam. Keyboard control: ❎ button is 'x' / ️ button is 'z' Source: h=true cls()::s::w,o,r,l,u,d=128,128,{[0]=7},34,30,60repeat for x=o,w,o*2 do for y=o,w,o*2 do a=0 for i=-1,1,2 do for j=-1,1,2 do a+=r[(x+i*o)%w+w*((y+j*o)%128)] end end r[x+w*y]=min(max(a\4+3-rnd(6),1),14) end end p=false for y=…