Introduction
Fish-Dang Bot: Rolling Laud is a platformer about a fish who dreams to be a dung beetle. The interesting part of this game is that players can enlarge the dung into a stepping stone via rolling them in the dung pool.
More Infos:
- Link to itch.io: https://zeenaz.itch.io/fish-dang-rolling-laud
Personal Thoughts
Grab that Dung!
The first coding task I was given is to write a code for the fish to grab the dung objects. Frankly speaking, I had never approached a problem like this, not even close. I was about to ask my leader to give me an easier task, but somehow I accept it, probably because I don’t want them to look down on me.
And this decision had made the next few hours a disaster.
Right, it should be easy to do the grab. All I have to do is to check whether the player pressed the grab button when the dung is in player’s box trigger. As the conditions were fulfilled, I just need to attach the dung to the player. The only problem here is: how to I attach the dung to the player? After several failed trials, I was almost insane, but was still anxious to tell this to my teammates. Luckily, the leader perceived my trouble and actively offers her help. With her suggestions, I finally came up with a idea: if I simply set the dung as the children of the player, the dung will naturally moves with the player. And thus my first task is successfully done.
Some reflections: what makes a team a team is that members always supports each other, resulting in a “1+1 > 2” effect. There is no need to be timid nor worried when helped by others. Instead, it can increase the efficiency and improve our own skills.

Debugging
At the final stage of the development, a serious bug was discovered. Because everyone is busy, our leader decides to neglect the bug. However, I know that this game will become partially unplayable if the bug isn’t resolved. Therefore, I quickly finished my part and offers to debug. The bug is about jumping malfunctions on the dung platform. After an examination of the source scripts, I hypothesized that the problem is due to the ray detectors shoot out from the player. When the player stands on the dung, the rays failed to reach the dung, thereby disabling jumping(if rays detects the dung, it will change player status to grounded, so jumping would be allowed) The bug was them solved by simply adding new ray that shoots further. Personally, I think this is my greatest contribution to the team.

Dream
If a fish can become a dung beetle, then there should be no way I can’t be a game designer XD

Important Lessons
- Sharing progress is required, use professional platforms such as GitHub
- Always make sure the members are using the same Unity versions
- do not touch the project files of others!!!!!