How to make a top down car racing game in windows form with C#

Game images and written tutorial here - In this tutorial we make a fun little top down car racing game using windows form and C# inside of visual studio 2019. We will go through this project step by step and I will show how to import the images, set the form, add events and code the whole game. The main objective of this game is race as long as you can without hitting any other car in the road, if you do then the game is over. We use a panel as the main game screen in this game. We are also using two picture boxes as the road marking and moving them to show a parallax scrolling animation inside of windows form. The final result came out really good and I am very happy with it. After the roads we add the cars for the AI and the car for the player, plan the collision detection and we are also going make a fun little feature where it gives you a trophy in the end of the for your score. Currently we have 3 trophie
Back to Top