Пример #1
0
 public void RecordNewAlert(ColoredAlert color)
 {
     if (Event.isRecording())
     {
         recordedAlerts.alertList.Add(new Alert(Time.time - recordingStartTime, color));
     }
 }
Пример #2
0
 public Alert(float t, ColoredAlert c)
 {
     this.time  = t;
     this.color = c;
 }