Troglodyte In Underbelly: Biome Harmony
Biome Harmony
Jordan Ireland
During the recent development cycle, a key focus was on modifying the biome manager to ensure accurate loading screen updates and addressing a critical bug associated with the animation system when jumping with a lantern. The challenge lay in synchronizing the biome manager with the loading screen to provide players with meaningful visual feedback during transitions. Simultaneously, the erratic behavior of the animation system during lantern-assisted jumps posed a potential disruption to gameplay immersion. Failure to resolve these issues would lead to a disjointed loading experience and negatively impact the overall game polish, affecting player satisfaction.
The biggest issue was a while loop that essentially froze the game while it was spawning causing the loading screen to freeze as well once the scene was "loaded". This was fixed by swapping the function to an IEnumerator and letting the game update every time the loops ran.
The issues originated from the biome manager lacking a mechanism to update the loading screen appropriately and a bug in the animation system causing erratic behavior during lantern-assisted jumps. To address this, I integrated a refined loading screen update mechanism into the biome manager, ensuring accurate visual feedback to players during transitions. Concurrently, I identified and resolved the bug affecting the animation system, allowing for smooth and controlled movements when jumping with a lantern. This solution enhances the overall player experience by providing a seamless transition between biomes, accompanied by a reliable loading screen, and eliminates unexpected animation issues, fostering a more immersive and polished gameplay environment.

Comments
Post a Comment