Really cool idea. It's clever and it looks amazing and I also dont know how to do 3 star egg. Also for the first 2/3 levels I didn't even know you could spin the white-board. I still had fun though. Also 2 if you don't mind, how did you implement match checking, I'm really curious how it looks in code. Thanks in advance, amazing game!
Viewing post in Spin & Draw & Do It Well jam comments
Thanks for trying it!
Also thanks for the question, the matching code is the part that took most of my time during the jam ahah
I had to rewrite it a few times but the logic is simple: when you click "compare" it takes a snapshot of both target and player disc, reduce both images to 128 x 128 (with no antialasing) then divides the pictures in several concentric circles. Then it just looks ad the quantity of color in each section and compares it with the other side.
It's actually not a very accurate method of picture matching, but I prefer it that way so even less skilled player could get at least 1 star at every level easily :)