XAMK- video game creation help - Printable Version +- Online Degrees and CLEP and DSST Exam Prep Discussion (https://www.degreeforum.net/mybb) +-- Forum: Main Category (https://www.degreeforum.net/mybb/Forum-Main-Category) +--- Forum: General Education-Related Discussion (https://www.degreeforum.net/mybb/Forum-General-Education-Related-Discussion) +--- Thread: XAMK- video game creation help (/Thread-XAMK-video-game-creation-help) |
XAMK- video game creation help - Personherebb9 - 11-27-2022 So I'm currently almost finished with my video game creation cert from XAMK, but I wanted to ask on here for help with the final project. (Snake Game) I believe a few people on this forum have already completed this cert and thus why I wanted to ask. How are we supposed to do the final assignment for the snake game. For context it's coded in C# and visualized in Unity. It's a normal Android snake game, up till this point we have added the basics, such as the snake itself, the egg which gets eaten and the walls. However, for the assignment we need to add a spike that can kill this snake and for that reason "restart" the game. The spikes should increase by 1 for every new level. I'm very new to programming and am finding it hard to find resources online on how I would do this correctly. Can anyone help me with this? RE: XAMK- video game creation help - rachel83az - 11-27-2022 I suggest checking out the Discord. It should've been mentioned in one of the emails you got from XAMK. RE: XAMK- video game creation help - flosfillin - 08-08-2023 Of course, I'd be happy to help you with your final project for the Snake Game! Adding the spike obstacle and implementing the level progression is a great way to enhance your game. I'll guide you through the steps you can take to achieve this. Creating the Spike Object: Start by creating a new GameObject in Unity for the spike. You can design the spike's appearance using Unity's built-in tools or import a sprite if you have one. Place the spike appropriately within your game scene. Collision Detection: You'll need to detect collisions between the snake's head and the spike. You can achieve this by using Unity's built-in physics and collider components. Attach a collider (such as a Box Collider 2D) to both the snake's head and the spike GameObject. Then, write a script to handle the collision detection. |