예제 #1
0
 private void SetPoolCountText()
 {
     poolCount.text = simulationManager.GetPoolCount().ToString();
     if (simulationManager.GetPoolCount() > 16)
     {
         infoText.text = "8 more created!";
     }
     else
     {
         infoText.text = "";
     }
 }