Example #1
0
 public void serverLog(TrialEventType type, string note)
 {
     if (isServer)
     {
         log(new TrialEvent(type, trialConductor.TrialName, Time.time, note));
     }
 }
Example #2
0
 public TrialEvent(TrialEventType type, string trialName, float time, string note)
 {
     this.type      = type;
     this.trialName = trialName;
     this.time      = time;
     this.note      = note;
 }
Example #3
0
 public void log(TrialEventType type, string note)
 {
     log(new TrialEvent(type, trialConductor.TrialName, Time.time, note));
 }
Example #4
0
 public TrialEvent(TrialEventType type, string trialName, float time)
     : this(type, trialName, time, null)
 {
 }