Use the WASD/Arrow keys to help your embarrassment "hunt" for their daily nutrients. Eons upon eons of bamboo.


Press the "P" key to see how many shoots of bamboo you and your embarrassment have eaten.

Once on that screen pressing down the "P" and " R" keys at the same time restarts the game. I don't really get it tbh.


Background music is feel The sunshine by the Band 1985. ( slightly lowered in volume and pitch, but barely noticeable,  it's from 2012 okay the audio isn't always the best)


Comments

Log in with itch.io to leave a comment.

A cute little game, with cute little sprites. However, I noticed a bug that made the game quite unwieldy. 

If I guessed correctly you are using colliders for both the bamboos and the panda and you have an OnCollisionEnter2D script to detect the "eating", which is a fine method. 

Meanwhile, instead of spawning bamboo clones, the bamboos is the same gameobject that teleports around every time it gets eaten, which is fine on its own too. 

However, with these two features togther, and no method of preventing the bamboo from teleporting to a place too close to the panda caused a bug that prevents me from eating the bamboo if the bamboo teleports right next to me. And on top of that, you seem to have no restriction on panda's rb rotation which combined with the bug above, would make my panda (and the camera attached to it) rotate if I run into the corner of the bamboo.

Use OnCollisionStay2D, or simply putting a code that checks the distance in x axis right after the teleporting method and re-teleport until the is enough would do.