Example #1
0
 public void PreviewRecording()
 {
     if (!ReplayKitManager.IsPreviewAvailable())
     {
         Debug.Log("Either nothing recorded or Not yet ReplayKitRecordingState.Available received!");
     }
     ReplayKitManager.Preview();
 }
Example #2
0
        public void Preview()
        {
            bool success = ReplayKitManager.Preview();

            SetStatus("Preview  Recording: " + (success ? "Success" : "Failed"));
        }