To view this content, you must be a member of Terresquall's Patreon at $5 or more
Already a qualifying Patreon member? Refresh to access this content.
Ambitious game developer with a penchant for learning. If there's a coding challenge to conquer, you can be sure that Matias will be the first to take it on.
A common point of confusion amongst beginners in Unity is how to transfer a Unity project from one computer to another, as there are many ways this can be done. In this article, we will be exploring these methods, as well as their pros and cons.
Continue readingUnity provides game developers with a robust platform to create immersive experiences. Once you’ve completed your Unity project, it’s time to export it as an executable (.exe) file, allowing others to play your game on Windows. In this article, we will walk you through the step-by-step process of exporting a Unity project as an executable game on Windows, covering important considerations along the way.
Continue readingNullReferenceException
errors are (and how to fix them) in UnityAn error involving a NullReferenceException
is something that new developers often encounter when working on projects in Unity. These errors occur when attempting to access object variables, or members of object variables, when the variable itself is null.
Although the cause is simple, NullReferenceException
errors can present themselves in many different ways. As a result, fixing them isn’t always as straightforward as following a standard series of steps. In this article, we will explore the various ways that a NullReferenceException
can occur in Unity, as well as how to handle these various situations.
Welcome to part 4 of our Metroidvania tutorial series, where we’ll be taking you on a journey through the development process of creating your own Metroidvania game, just like the widely popular Hollow Knight, in Unity!
Continue readingWelcome to part 3 of our Metroidvania tutorial series, where we’ll be taking you on a journey through the development process of creating your own Metroidvania game, just like the widely popular Hollow Knight, in Unity!
Continue readingUnity is a popular game development engine that provides many tools to create interactive and engaging games. One of the most important aspects of any game is the user interface, which includes text elements that provide information and feedback to the player. Unity provides two options for creating text elements: the legacy Text component and the newer TextMeshPro.
Continue readingIf you’re working with Unity 2020, you might have run into an Resolve of invaild GC handle error. Don’t panic! This error is a common one that many Unity developers have faced, and there are several ways to resolve it. In this article, we will explore different ways to fix this error.
Here’s how the error typically looks like:
Resolve of invalid GC handle. The handle is from a previous domain. The resolve operation is skipped. UnityEngine.GUILayout:Window (int,UnityEngine.Rect,UnityEngine.GUI/WindowFunction,string,UnityEngine.GUIStyle,UnityEngine.GUILayoutOption[])Continue reading