Thank you !
Joseph
Creator of
Recent community posts
Hey, thanks for the nice comment it is really appreciated.
I wanted to do all of the above and more, but unfortunately Pico 8 has harsh limitations with file size. I am going through and refactoring my code so I can squeeze more in. I would like the ability to just place flowers down, like in the opening scene.
I will be moving on from Pico soon, so might come back to this and see how it can be expanded.
Many thanks again!
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!