Skip to main content

UNITY TUTORIAL 07

Illustration by Saikat Kumar on Dribbble.

This week I completed the first three tutorials for building an arcade-style sumo battle game. In the first set of tutorials, I imported the necessary assets and brought a sphere into the scene then applied a texture to the sphere. I learned how to give the main camera a focal point so that it can smoothly rotate around the play area. Following this, I learned how to make the ball roll towards the camera no matter what direction it is facing. 

I brought another sphere into the scene to act as an enemy in the second set of tutorials. I was introduced to physics materials where I was able to give the enemy the ability to bounce the player away. I made a new script and added code that allowed the enemy to follow the player. I also created a SpawnManager script for the enemy and applied the code which would cause the enemy to spawn in a random area at the start of the game.

In the third set of tutorials, I brought in a star power-up and used the OnTriggerEnter method so that the power-up is destroyed when it comes in contact with the player. I learned how to send the enemy flying when the player bumps into them with a power-up and how to make this power-up temporary. I also applied an indicator around the player so they know when they have received a power-up. 

Personal screenshot from my work in Unity3D.

I thought these tutorials had some useful methods that I can implement into my own game such as the power-ups and power-up timer.

Comments

Popular posts from this blog

UNITY TUTORIAL 04

Various devices illustration from Freepik . This week I completed the final set of tutorials to create a simple animal feeding game. I learned how to make animals spawn on their own rather than having to click "S" to do so. This involved creating a custom function and moving the if-statement under "void Update" to this new function. I also learned how to make the animals spawn after a certain timeframe. I learned how to add box colliders to the animals and how to edit the size of these box colliders. Moreover, I was taught how to make the animals and pizza disappear when they came in contact with each other. I added an else-if-statement that triggers a "Game Over" message when an animal surpasses the player without being fed.  Following this, I completed a challenge in which I had to correct a game similar to the one in the previous tutorials. The final product should allow the player to spawn dogs to catch falling coloured balls. The dogs were initially a...

INTRODUCTION TO SOMEONE WHO'S JUST VIBING

HEY!! Look who made it to her second year of college!! Me, Nadine, I did!! Yeah, I'm even more surprised than you are.  Happy girl illustration by 94MLK_ on Twitter. Saved from Pinterest . Last year wasn't too bad, but that was up until the whole country went into quarantine and I began to fear for my college career. I was constantly on the verge of giving up on my assignments but I would like to thank my friends for not allowing that to happen. I'm so glad I get to start year two with them and hopefully we'll make it to the end together too!  Despite the stress, there are a few pieces of work from year one that I'm proud of. I liked the websites that I created for Web Development 1 and 2, the video I edited from Introduction to Digital Media mission 3 and the advertisement poster I made for Digital Photography. I hope to produce better work this year.  Personal screenshot from the index page of my web development 1 project. Personal screenshot from the index page ...

READING 6: DOING

Illustration by Shane Francisco on dribbble . Difference between a linear and nonlinear story structure The most common storytelling structures that are present in games are linear and nonlinear, since there is  no single mode of narrativity in entertainment software [1].  Linear narratives follow a chronological path with a defined beginning, middle, and end. The player progresses through the game in a straight line by reaching predefined plot points. This is different to games with a nonlinear structure because they provide the player with the freedom to make decisions that can influence the story. The player's choices offers them several possible endings. There are games that have a combination of both structures. Three act structure The three act structure is a method of linear storytelling which divides a plot into a beginning, middle, and end. This model is widely used for designing a high level framing narrative for compu...