Beispiel #1
0
 private void OutputText(string message, OutputColorType colorType)
 {
     _output.text += FormatColor(message + "\n", colorType);
     //_output.verticalScrollbar.value = 1;
 }
Beispiel #2
0
 public string FormatColor(string message, OutputColorType colorType)
 {
     return("<color=" + ColorPalette[(int)colorType] + ">" + message + "</color>");
 }