Category: Unity Tutorials

  • Unity Match3 game sample

    Unity Match3 game sample

    Recently, I made a challenge to make a match 3 game under 6 hours. It turned out to be a decent hypercasual game. The full source code is here : https://github.com/nevarman/hypercasual-match-game.License for only source code is CC0, and for the whole Unity project is CC 4.0.For the art assets and…

  • Kinect Hand Cursor for Unity3D

    Kinect Hand Cursor for Unity3D

    Part 1 – Intro One of the curitial parts of a game is your UI and it will impact your gameplay a lot.  Today I’m not going to talk about it’s design, but I’m going to show you how to develop a UI system for Kinect. On desktop you can control…

  • Unity Editor Scripting – Filtering Hierarchy by Tag or Layer

    Today I’m going to show and share an editor code I wrote about how to filter your hierarchy by tag or layer. I uploaded my editor scripts to this repository on Github, if you read my previous editor tutorials you should have seen this script inside /Tut-2-FilterHierarchy folder. The default filtering option for Unity’s hierarchy…

  • Unity Editor Scripting-Quick SetActive

    In this tutorial we are going to play with our hierarchy window, and add a toggle button into the hierarchywindow to quickly activate and deavtivate our gameobjects.Before we begin, you can download the source code from github. And here how our hierarchy window will look like.(Light bulb icon next to…

  • Unity Editor Scripting- Custom Transfom Editor

    Let’s continue from editor scripting. I’m going to show how to implement your own transform editor for Unity3d. By default Unity has it’s own editor for Transform component, which shows you your rotation as EulerAngles not as Quaternion. So when you create a custom editor for Transform and call DrawDefaultInspector(); from OnInspectorGUI()…

  • Unity Editor Scripting – It is fun!

    That’s right, editor scripting is really fun! Besides having fun you can do lots of useful things with custom editor tools with Unity3D. After some boring Android plugin tutorials I would like to show some editor scripting tips and tools. I will again use github for this tutorial , you…