Play JamDemo
FlowerBudOfLife (Epilepsy warning when zooming)'s itch.io pageHow many characters of code did you use?
373 according to pico8
Include your code here, if you'd like to show it off!
function _init() r=12 x1 = 0 y2 = 1 y=0 x=0 go() end function go() p1=.5*r p2=sqrt(3/4)*r camera(-128/2, -128/2) cls() circ(x,y,r,2) circ(x,(y+r),r,2) circ(x,y-r,r,2) circ(x+p2,y-p1,r,2) circ(x+p2,y+p1,r,2) circ(x-p2,y-p1,r,2) circ(x-p2,y+p1,r,2) end zoom=5 function _update() if (btn(4)) then r+=zoom go() end if (btn(5)) then r-=zoom go() end end
Leave a comment
Log in with itch.io to leave a comment.
Comments
No one has posted a comment yet