Game Development

Tag: Game Development, contains all the articles on Bite Sized Tech that are related to Game Development. If you are interested in Developing a game, this is where you should start.

Methods - Part - 4 - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Methods in C# | Part 4 – In, Ref & Out Keywords | Unity Game Development Tutorial | How To Make A Game

In C#, when defining a Method with Parameters, you can tell the compiler about how you would like to access these said parameters, i.e do you just want to create a copy of the passed arguments or do you just want the memory address of the passed argument or whether you only want read access …

Methods in C# | Part 4 – In, Ref & Out Keywords | Unity Game Development Tutorial | How To Make A Game Read More »

Methods - Part - 3 - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Methods in C# | Part 3 – Overload Resolution | Unity Game Development Tutorial | How To Make A Game

Overload Resolution is a concept that comes into play because of Optional Parameters that we learned how to use in the last article. For those who have not been following this article series, In the last article, we went over everything related to various important types of Parameters and Arguments available to you when developing …

Methods in C# | Part 3 – Overload Resolution | Unity Game Development Tutorial | How To Make A Game Read More »

Methods - Part - 2 - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Methods In C# | Part 2 – Multiple, Required And Optional Parameters + Named Arguments | Unity Game Development Tutorial

In the last article, we went over everything related to the Basics of Methods, if you don’t know anything about methods and have not read that article i suggest that you read it first! I’ve divided my explanation of Methods in 4 different articles as otherwise the articles would be too long. List Of All …

Methods In C# | Part 2 – Multiple, Required And Optional Parameters + Named Arguments | Unity Game Development Tutorial Read More »



Methods - Part - 1 - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Methods in C# | Part 1 – Basics of Methods | Unity Game Development Tutorial

Methods can be considered as the one of the building blocks of Programming and are used to write your program’s code in small manageable blocks instead of a huge monolithic script. I’ve divided my explanation of Methods in 4 different articles as otherwise the articles would be too long. List Of All Articles To Master …

Methods in C# | Part 1 – Basics of Methods | Unity Game Development Tutorial Read More »

Do While Loop - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Do While Loop | Unity C# Game Development Tutorial | How To Make A Game

Do While Loop just like all the other loops is used to loop through the elements of an Array, Dictionary, List or Collection. In the previous articles we have gone through the For Loop, Foreach Loop and While Loop already, In today’s article, we will go through the last kind of loop i.e. Do While …

Do While Loop | Unity C# Game Development Tutorial | How To Make A Game Read More »

While Loop - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

While Loop | Unity C# Game Development Tutorial | How To Make A Game

While Loop just like For Loop and Foreach Loop is used to repeatedly execute a piece of code based on the condition that you have predefined. If you have been following along with the whole series, you should already be pretty clear about what loops are and how and why you would use them. To …

While Loop | Unity C# Game Development Tutorial | How To Make A Game Read More »



Foreach Loop - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Foreach Loop | Unity C# Game Development Tutorial | How To Make A Game

In the previous article, we talked about For loops and came to a clear understanding on how and when you should be using For loop. Now, Foreach Loop, just like the For Loop is used to repeatedly execute a block of code. In this article, we will be going through everything about Foreach Loops to …

Foreach Loop | Unity C# Game Development Tutorial | How To Make A Game Read More »

For Loop - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

For Loop | Unity C# Game Development Tutorial | How To Make A Game

When you are coding a Game there will come times when you would want to repeat the same piece of code again and again like when showing Items on your Menu or spawning the Player and NPCs in your Game World. Loops in programming languages like C# can be used to do just that. Now, …

For Loop | Unity C# Game Development Tutorial | How To Make A Game Read More »

Switch Statement - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Switch Statement | Unity C# Game Development Tutorial | How To Make A Game

There are various ways using which you can make conditional decisions in C# and Switch Statement is one of these ways of doing so. In one of the precious articles i have already talked about how you can make decisions using if statements when coding in this article we will take a look at how …

Switch Statement | Unity C# Game Development Tutorial | How To Make A Game Read More »



Understanding The Target Player Base Of Your Game - Game Development Tips - Featured Image

Understanding The Target Player Base Of Your Game | Game Development Tips

Player Base i.e the Audience of your game is one of the most important factor that you have to consider as a Game Developer. Understanding your player base can give you a lot of insights that will help you in making your game a commercial success. So in this article, i have listed some questions …

Understanding The Target Player Base Of Your Game | Game Development Tips Read More »