Exemplo n.º 1
0
 public void RecordNewAlert(ColoredAlert color)
 {
     if (Event.isRecording())
     {
         recordedAlerts.alertList.Add(new Alert(Time.time - recordingStartTime, color));
     }
 }
Exemplo n.º 2
0
 public Alert(float t, ColoredAlert c)
 {
     this.time  = t;
     this.color = c;
 }