Beispiel #1
0
 private void SafetyGetValue(PostProcessParamBase param, float time, ref float value, int index)
 {
     try
     {
         param.GetValue(time, out value, index);
     }
     catch (AccessViolationException e)
     {
         ErrorOccuredEvent?.Invoke(e.Message);
     }
 }
Beispiel #2
0
 protected virtual void Log(string errormessage)
 {
     ErrorOccuredEvent?.Invoke(this, errormessage);
 }
Beispiel #3
0
 private void Log(string message)
 {
     ErrorOccuredEvent?.Invoke(this, message);
 }