Exemple #1
0
 /// <summary>
 /// using event bind in onClick slot
 /// </summary>
 /// <param name="_item"></param>
 public void ShowInfo(FragmentItem _item)
 {
     if (_item == null)
     {
         InfoText.text = "当前格子无碎片";
     }
     else
     {
         InfoText.text = _item.Des();
     }
 }