L/R to rotate
Z to accelereate
X to paint
CTRL-R to restart

To load from inside PICO-8:  LOAD #COSMIC_PAINTER

Made for TweetTweetJam 5 (526 chars):

f,s=circfill,64
x,y,dx,dy,a,c,o=s,s,0,0,.4,7,128
cls()for i=1,400do pset(s+cos(i/103)*s,s+sin(i/201)*s,i%8+8)
end f(s,s,40,7)f(s,s,30,0)
memcpy(0,24576,8192)::_::cls()camera(-s,-s)
for z=1,8 do line(0,0,c)for i=2,4do line(cos(a+i/3)*z/2,sin(a+i/3)*z/2)end
for v=-1,1do for u=-1,1do
sspr(0,0,o,o,u*z*o-x*z,v*z*o-y*z,o*z,o*z)
end end end
x+=dx y+=dy x&=~0>>>9y&=~0>>>9
dx*=.95dy*=.95
if(btn(0))a+=1/32
if(btn(1))a-=1/32
if(btn(5))sset(x-u,y-v,c)
u,v,g=cos(a),sin(a),sget(x,y)
if(btn(4))dx+=u/19dy+=v/19
if(g>0)c=g
flip()goto _


StatusReleased
PlatformsHTML5
Rating
Rated 4.8 out of 5 stars
(4 total ratings)
Authorzep
Made withPICO-8
Tagstweettweetjam, tweettweetjam5

Comments

Log in with itch.io to leave a comment.

This is pretty amazing for a tweet cart!

(+1)

Fun little game! Btw, you're the same person who made Pico-8 right?

(+1)

Looks great! Having the foreground paralax is an interesting choice. Changing color by flying into them is nice, it means you can't draw over other colors.