Full Unity 2D Game Tutorial 2019 – Particle Effects CPU and GPU Particle effects are a special type of technique used to display many objects/sprites in an efficient manner to create various effects. The particle system was developed to be a more efficient way of rendering multiple images quickly to create effects that the normal […]
FU2GT
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Making Mini Map Mask
Full Unity 2D Game Tutorial 2019 – Making Mini Map Mask In this section we will be making the mini map and then using a mask to shape our mini map into something more appealing then a big oblong on the screen. Full Unity 2D Game Tutorial 2019 – Making Minor Modifications Before we start […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Preferences
Full Unity 2D Game Tutorial 2019 – Preferences In this section of the tutorial we will be adding the preferences code to allow us to update the music and effects volume. These preferences can be applied to any item you want to store like volume, username, fullscreen/windowed screensize, key/controller configurations etc. For more information check […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Main Menu
Full Unity 2D Game Tutorial 2019 – Main Menu In this part of the tutorial we will be crating the main menu and adding some buttons to allows us to play a game, go to the options menu and to exit the game. Full Unity 2D Game Tutorial 2019 – Scene We have our game […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Audio Manager
Full Unity 2D Game Tutorial 2019 – Audio Manager Sounds and music are an important part of a game that can help emphasise the theme of your game and take it to a higher level. In this part of the tutorial we will be adding an Audio Manager which will control what sounds will play […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Game Manager
Full Unity 2D Game Tutorial 2019 – Game Manager A Game Manager is a c# script we can create which will be used to help coordinate the game. We will use it to spawn new enemies when there isn’t enough and in the future use it to spawn power-ups and health pickups. Full Unity 2D […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Interfaces and Enemy Shooting
Full Unity 2D Game Tutorial 2019 – Interfaces and Enemy Shooting In this section of the tutorial we will implement the enemy shooting capability and we will use Interfaces to allow us to add the ability to give and take away health to an object. We will also look into changing the collision matrix to […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – User Interface and TextMeshPro
Full Unity 2D Game Tutorial 2019 – User Interface and TextMeshPro In this section of the tutorial we will add a user interface for the player using the Canvas and TextMeshPro. The User interface will allow the player to see how many bullets they have left in the magazine and notify them when they are […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Scriptable Objects
Full Unity 2D Game Tutorial 2019 – Scriptable Objects In this section of the tutorial we will dive into Scriptable Objects. Scriptable objects are a way to contain data in asset files that can then be used by your game objects. As an example we could have a car Scriptable object. This could than be […]
- FU2GT
- ...
Full Unity 2D Game Tutorial 2019 – Simple Enemy AI and Colliders
Full Unity 2D Game Tutorial 2019 – Simple Enemy AI In this section of the tutorial we will go over creating an enemy and giving it simple AI to follow the player. We will also give the enemy some colliders so it can detect collisions with other objects. Full Unity 2D Game Tutorial 2019- Creating […]