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 […]
image
- 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 […]
Texture Filter – Picking Pixels
What is a texture filter? A texture filter is an openGL process for taking pixel information from a texture for rendering. There will be 2 filters defined for each texture. One filter for rendering the texture bigger than it is and one for rendering smaller than it is. The default texture filter for a texture […]
Particle Effects – 2D Game Development
What Are Particle Effects? If you’re a gamer like me, then you have probably played a game that has particle effects in it. Common uses for particle effects are smoke, fire, debris and magic spell effects. Effects like smoke and fire are hard to create using normal rendering methods. The particle system was created to […]
Full LibGDX Game Tutorial – General Improvements
Full LibGDX Game Tutorial – General Improvements Welcome to part 15 of our Full LibGDX Game Tutorial. This part will focus on general improvements to the game like adding textures, better level generation etc. If you haven’t seen the earlier parts of this tutorial I advise you to start at Full LibGDX Game Tutorial – Project […]
Asset Manager – LibGDX Tutorial
What is an Asset Manager? An Asset Manager in LibGDX is a class that is used to load and unload resources for your project. It will store a number of references an asset has and keep it loaded until it is no longer required. The Asset Manager API is viewable here. By using an Asset […]
9 Patch Tutorial – Using Nine Patch Images in Libgdx
What is a 9 patch A 9 patch is an image which has been divided into a 3×3 grid making 9 patches. These 9 parts can then be used to create a scalable image by repeating/stretching certain patches. This 3×3 grid create 4 corners, 4 walls and a center image. The corner images will not […]