Exemplo n.º 1
0
 /// <summary>
 /// Stop recording a video
 /// </summary>
 public static void StopRecording()
 {
     if (!IsRecording)
     {
         Util.LogError("Cannot stop recording because NatCorder is not recording");
         return;
     }
     Implementation.StopRecording();
 }
Exemplo n.º 2
0
 public static void StopRecording()
 {
     if (IsRecording)
     {
         Implementation.StopRecording();
     }
     else
     {
         Debug.LogError("NatCorder Error: Cannot stop recording because NatCorder is not recording");
     }
 }