Ejemplo n.º 1
0
 protected void DestroyHoverText()
 {
     if (hoverTextInstance != null)
     {
         hoverTextInstance.Destroy();
         hoverTextInstance = null;
     }
 }
Ejemplo n.º 2
0
 protected void InitHoverText()
 {
     hoverTextInstance = Instantiate(hoverNameText);
     hoverTextInstance.Display(npc.GetName(), gameObject);
 }