Hacking Azure Function Cold Start

Azure function requires subscription to remove cold start, for small project, it may not be cost effective hence creating a simple api call to "wake up" azure function during possible…

?: operator

test ? yes : no simply means if test is bool either true or false. if test is true, yes will be used if test is false then no will…

Find Component in child Gameobject

![-w1680](media/15998105420013/15998106683994.jpg) If Text component is placed under the DisplayIdTxt and we need to retrieve it from Item GameObject ```csharp Text DisplayIdTxt = newItem.transform.Find("DisplayIDTxt").GetComponent(); ```