internal void SetInfo(ITianGlyphPanel panel, float topOffset, float bottomOffset, bool outline)
 {
     this.panel        = panel;
     this.topOffset    = topOffset;
     this.bottomOffset = bottomOffset;
     this.outline      = outline;
     if (panel != null)
     {
         panel.Reload();
     }
 }
 public void SetRigthBottomPanel(ITianGlyphPanel panel, bool outline = true, float topOffsetset = 0f, float bottomOffset = 0f)
 {
     m_PanelInfos[3].SetInfo(panel, topOffsetset, bottomOffset, outline);
 }
 public void SetLeftTopPanel(ITianGlyphPanel panel, bool outline = true, float topOffset = 0f, float bottomOffset = 0f)
 {
     m_PanelInfos[0].SetInfo(panel, topOffset, bottomOffset, outline);
 }