示例#1
0
 /// <summary>Pause the timeflow and set current time to 0.</summary>
 public void StopTimeFlowEngine()
 {
     _isPlaying = false;
     if (TimeFlowStopped != null)
     {
         TimeFlowStopped.Invoke(_time);
     }
     SetTime(0);
 }