gettring object in unity code example
Example 1: unity gameobject.find
GameObject obj = GameObject.Find("/Parent/Child/ChildOfChild");
Example 2: finding object trough scripts c#
hand = GameObject.Find("Hand");
GameObject obj = GameObject.Find("/Parent/Child/ChildOfChild");
hand = GameObject.Find("Hand");