Search
Items tagged with: pico8
Build bridges over hot lava in Hellgineers https://www.gamingonlinux.com/2023/03/build-bridges-over-hot-lava-in-hellgineers/ #PICO8 #IndieGame
Build bridges over hot lava in Hellgineers
Hellgineers takes the idea of Bridge Constructor and gives it a devilish spin, available now with Native Linux support.Liam Dawe (GamingOnLinux)
Been thoroughly enjoying #LoveByteTCC #Pico8
Day 1&2 237 Chars
function _draw()
cls()
r=rectfill
e=127
r(0,0,e,e,1)
for i=0,127,1 do
pset(i%e,(i*9+t()*20)%e,7)
end
r(0,100,e,e,13)
r(60,80,68,99,4)
for i=0,31,1 do
c=(flr(t())*i%15)+1
v=i*2
r(32+i+i%10,80-v,98-i-i%10,90-v,c)
end
end
Day 1&2 237 Chars
function _draw()
cls()
r=rectfill
e=127
r(0,0,e,e,1)
for i=0,127,1 do
pset(i%e,(i*9+t()*20)%e,7)
end
r(0,100,e,e,13)
r(60,80,68,99,4)
for i=0,31,1 do
c=(flr(t())*i%15)+1
v=i*2
r(32+i+i%10,80-v,98-i-i%10,90-v,c)
end
end