Articles

Check out my Latest posts!

How to Pair Android Wear Watches to New Phones without Factory Resetting

Pair Android Wear to New/Same Phone Without Wiping First, you will need to download the ADB tools. I personally use the official binaries from Google. Next, you will need to enable ADB debugging on your smartwatch (both wired or over WiFi debugging are fine, though I find WiFi more convenient). This is enabled through Developer options on your smartwatch, which you...

Creating a procedural grid

Rendering Things If you want to visualize something in Unity, you use a mesh. It could be a 3D model exported from another program. It could be a procedurally generated mesh. It could be a sprite, UI element, or particle system, for which Unity uses meshes as well. Even screen effects are rendered with a mesh. So what is a mesh? Conceptually,...

Unity AI

Artificial Intelligence, also known as AI, is something that you’ll see in every video game that you play. First-person shooter, real-time strategy, simulation, role playing games, sports, puzzles, and so on, all have various forms of AI in both large and small systems. In this article, we’ll be going over several topics that involve creating AI, including techniques, actions, path-finding,...

How to create a car controller in Unity

Welcome to another tutorial! Here I will show you how to create a car controller using Unity 3D game engine! You can easily create your own simple vehicles in no time. Let's get started! 1. The first step is to import your car object You can either create your own, make a cube, or import a free one from the assetstore like I...