Unity Asset Store Sale (+ Giveaway)

Asset Store Sale For the next couple of weeks, the Unity Asset Store will be having a store-wide sale! I think that this is the perfect opportunity to get more exposure and feedback for my own asset as well as a good opportunity to sell it for a great deal. Open Trivia for Unity For…… Continue reading Unity Asset Store Sale (+ Giveaway)

Unity – UnityEvent

What is a UnityEvent? A UnityEvent is Unity’s built-in event system which allows you to subscribe to events right in the editor. The Unity UI system commonly uses them for example when a button is pressed: How do I use a UnityEvent in my code? All you need to do, is create a public UnityEvent…… Continue reading Unity – UnityEvent

Unity – 2D Player Controller

What is this? This is a simple and easy to use 2D Player Controller. It is highly customisable and has easy integration with animations. It features a good set of parameters that can be tweaked within the Inspector as well as being able to hook up events for when the character is Idle, Moving, Jumping…… Continue reading Unity – 2D Player Controller

C# – Extension Methods

What is an Extension Method? An extension method is a way to add functionality to an existing type which you either do not own the source code for or is already compiled. They are defined as static method and must live within an also static class. The first parameters is preceded by the keyword ‘this’…… Continue reading C# – Extension Methods

Unity – ‘Draggable UI’ Script

What is ‘Draggable UI’? Draggable UI is a super simple script. Simply, following on from the idea that I would love more control over my User Interface when playing video games, specifically within MMO’s. How? It makes use of Unity’s built-in Interfaces including ‘IDragHandler’ and ‘IEndDragHandler’. Implementing these interfaces allows the script to receive such…… Continue reading Unity – ‘Draggable UI’ Script

Unity – SceneManager (LoadSceneAsync)

SceneManager The Unity SceneManager is a class introduced in Unity 5 to split up some of the functionality of the Application class. This includes helping to make loading (and unloading) scenes within Unity easier. The SceneManager lives within the UnityEngine.SceneManagement namespace and has a whole host of useful methods such as LoadSceneAsync and UnloadSceneAsync. These…… Continue reading Unity – SceneManager (LoadSceneAsync)