Playing Video in Unity

Ever stuck on how to render a video on a TV screen in a game? Lets us learn the concept of playing a video in Unity. You can import many different formats of video file into Unity. Unity stores such…
Action Callback in Unity

Delegate is a famous way to implement Callbacks in C#. Action is one such generic delegate type. Action Callbacks can be very handy in Unity programming. Let us learn how to use Action Callback in Unity. What is an Action? Action…
Coroutines in Unity: Part 1 – Basics

As per Unity docs, a coroutine is a function that can suspend its execution (yield) until the given YieldInstruction finishes. In other words, coroutines in Unity work like normal functions till they encounter a YieldInstruction. At this point, the coroutine…
Parse Xml in Unity3D

Have a .xml file that needs parsing in unity? Let us learn what is an xml file and how you can parse xml in unity3d. What is an Xml? XML stands for eXtensible Markup Language. It is a software- and…
Time.deltaTime in Unity3D

It is very important for a Unity Developer to have a sound understanding of Time.deltaTime. Let us learn the basics of Time.deltaTime in Unity3D with some examples. What is Time.deltaTime? Time.deltaTime is the completion time in seconds since the last…