Comments

Log in with itch.io to leave a comment.

Fantastic little picross implementation.  Great job!

(+1)

So Nice! I like it. Nice coding and sound!

Thank you very much :) I was really happy with the music even though it is super super simple.

(+1)

This is a great implementation of Picross! Thank you for adding a button to mark empty spaces. I had fun solving level 20, with no misses! :D


That is awesome. Level 20 took me quite a while to get right. Had to test it probably about 10 times but could never remember the solution haha. Thank you very much for the comment, I really appreciate it :)

(+1)

Fun game that I enjoyed greatly, but for some reason level 11 won't mark as completed. I have beaten 15 levels so far and this is the only one causing issues.

(+1)

Update: completing level 16 marked level 11 as complete, but not level 16

Thank you very much for bringing this up. I will look into it ASAP!

(1 edit) (+1)

I've finished all of the levels, the only issues I noticed were 11 and 17 not marking themselves complete, and level 16 marking level 11 complete instead of itself. Nonetheless, good job

(1 edit)

Many thanks again for letting me know, I have added and update to fix that screen for the future. :)

To calculate the Y coordinate of the level select screen to turn the box green I was using:

Round_down(level_number / 6) 

That only works for the numbers 1-10. The correct equation is:

Round_up(level_number/5)

Many thanks again, really appreciate the feedback!