Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
A jam submission

FlowerBudOfLife (Epilepsy warning when zooming)View project page

Just a small thing I found when trying to make a Flower Of Life program
Submitted by Jordan Kloosterman — 34 minutes, 52 seconds before the deadline
Add to collection

Play JamDemo

FlowerBudOfLife (Epilepsy warning when zooming)'s itch.io page

How 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