santosh nallaOct 7, 20218 min readAdvanced C# Scripting For UnityAsynchronous Programming in UnityMost Unity Developers might be aware of the concept of Asynchronous Programming - if “Coroutines” are what came into your mind, yes, that...
santosh nallaSep 15, 20212 min readAdvanced C# Scripting For UnityExtension Methods in UnityLets say you want to add a function to Transform class called Reset() - which resets position, Rotation and Scale values of a particular...
santosh nallaMar 13, 20216 min readAdvanced C# Scripting For UnityLINQ - C# in Unity Game ProgramingLINQ stands for Language Integrated Query. Basically this is used/allows us to filter through data(arrays and lists). Data filtering on...
santosh nallaSep 10, 20205 min readAdvanced C# Scripting For UnityDelegates, Events, Actions, FuncDELEGATES: Delegates and Events are usually super confusing. Here in this blog i will make them as simple as possible. Usually Delegates...