void UpdateFellowInfo_Star(Fellow fellow)
 {
     if (fellow.GetFellowType() == (int)FELLOWTYPE.BABY)
     {
         m_StarAttr.SetActive(false);
     }
     else
     {
         TooltipsEquipStar star = m_StarAttr.GetComponent <TooltipsEquipStar>();
         star.ShowStar(fellow.StarLevel);
         m_StarAttr.SetActive(true);
     }
 }