How To Make A Game

Category : How To Make A Game, contains all the articles on Bite Sized Tech that are related to How To Make A Game Series. If you are just starting with Game Development this is a good place to start.

Abstract Class and Abstract Method - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Abstract Class & Abstract Method in C# | Unity Game Development Tutorial | How To Make A Game

Abstract Class is one of the fundamental concept of OOPS (Object Oriented Programming System) and we use it to create Completely or Partially implemented Classes in C#, which give Game Developer such as us more control over how our Classes behaves. In this Article, we will be going over Abstract Classes and Abstract Methods to …

Abstract Class & Abstract Method in C# | Unity Game Development Tutorial | How To Make A Game Read More »

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

Polymorphism In C# | Unity Game Development Tutorial | How To Make A Game

Polymorphism is a Concept that comes into play when we start using Inheritance in our code and using this concept correctly can give Game Developers the ability to alter Inherited Methods to better suite the Derived Class. In this Article, we will take a close look at the Concept of Polymorphism to understand what exactly …

Polymorphism In C# | Unity Game Development Tutorial | How To Make A Game Read More »

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

Inheritance in C# | Unity Game Development Tutorial | How To Make A Game

Inheritance is one of the fundamental concepts of OOPS (Object Oriented Programming System) and one that we will talk about today. In this article, we will go over everything about Inheritance and will cover, What is Inheritance in C# and how using it can help reduce the amount of code and increase code manageability when …

Inheritance in C# | Unity Game Development Tutorial | How To Make A Game Read More »



Access Modifiers - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Access Modifiers in C# | Unity Game Development Tutorial | How To Make A Game

We have got in touch of Access Modifiers since the article about Variables & Data Types and since then they have made quite a few appearances in the succeeding articles but till now other than just giving you a textbook definition about it, i have not actually explained to you what Access Modifiers are and …

Access Modifiers in C# | Unity Game Development Tutorial | How To Make A Game Read More »

Static Modifier - Unity C# Game Development Tutorial - How To Make A Game - Featured Image

Static Modifier in C# | Unity Game Development Tutorial | How To Make A Game

There are a whole lot of Keywords in C# that are reserved and are used for specific purpose when coding and the static Keyword is one of those keywords. In this Article, I’m going to talk about the static modifier / keyword and am going to cover Static keyword and what it represents when writing …

Static Modifier in C# | Unity Game Development Tutorial | How To Make A Game Read More »

Classes, Objects and Constructors in C# - Unity Game Development Tutorial - How To Make A Game - Featured Image

Classes, Objects & Constructors in C# | Unity Game Development Tutorial | How To Make A Game

A Class and an Object can be considered as a fundamental part of how you code a game using C# and Unity Game Engine. In this article, we will take a deep dive into What a Class in C# represents and How you can Define a Class in your C# Scripts What is an Object …

Classes, Objects & Constructors in C# | Unity Game Development Tutorial | How To Make A Game Read More »



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 »