Farming Game Asteroids C++

2.5D Game

Autumn 2023

In this project I aimed to practice my Unity skills and to stretch myself by creating more customised features such as 2.5D collisions. I improved my animations system skills by streamlining from Aseprite frames to programmatically controlling animation duration and transition conditions. Additionally, I implemented custom physics to create a 2.5D world where 3D collisions occur within a top-down tilemap environment.

C#
Unity
Animations
Custom Physics

Key Features

Challenges, solutions and lessons learnt

Initially, attempting to store a 3D position of the player and use this to calculate 3D collisions, however this generated errors from adding too much complexity. This led to a rework in which I simplified the logic to only require knowledge of the ground level and the player's position to determine how far the player needs to fall to reach the ground. Based on the calculated ground position, I can then recalculate the ground level based on the tile below the player.

Trello