示例#1
0
文件: UIHandler.cs 项目: OFGONEN/619
 void ChangeOptionText(bool endturn)
 {
     if (endturn)
     {
         text_option.ChangeToNormal();
     }
     else
     {
         text_option.ChangeToNegative();
     }
 }
示例#2
0
文件: UIHandler.cs 项目: OFGONEN/619
 public void ChangePlayerName(bool player)
 {
     if (player)
     {
         text_player_name.ChangeToNormal();
     }
     else
     {
         text_player_name.ChangeToNegative();
     }
 }