This is my submission for TriJam #13

Find the brightest most saturated orange color in the grid. You got 3 lives. The game gets harder as you get further along.

Tip: All oranges come in pairs except for the orange you seek ;)

the orange icon is part of the fruits icon pack made by Robert Brooks - Fruits icon pack

Download

Download
FallingInLoveWithOranges_linux.zip 13 MB
Download
FallingInLoveWithOranges_win32.zip 11 MB

Comments

Log in with itch.io to leave a comment.

I think I got into the zone at one point there. Very zen.


Watch Tri Jam 13 + Randomizer from Tiger_J on www.twitch.tv

Thanks for showing the game on stream. That speedrun though :o

Interesting game.  I'd be interested to know what criteria is used for brightness of orange.  Like is it based on saturation or something?

(1 edit)

The colors are based on HSV values, because HSL is not available in GoDot engine.Every stage has 3 levels.

I calculate the number of needed colors for the square and add extra offset of (level *2) to it. 
So Stage 1 Level 1 only needs 5 colors but the 5 colors are chosen from the middle of a list of 9 colors. So color 3-7 out of a set of 9 colors.
So Stage 1 Level 3 also needs 5 colors but the 5 colors are chosen from the middle of a list of 17 colors. So color 7-11 out of a set of 17 colors.

I uploaded my preparations to my google drive if you are interested (the calculations in the sheet were still on HSV values and I somehow used a base of 256 value)
https://docs.google.com/spreadsheets/d/1MpuBHFSYP2tO1AEhOwxcaekECHVvKWqeWNCis6-i...