public void PreviewRecording() { if (!ReplayKitManager.IsPreviewAvailable()) { Debug.Log("Either nothing recorded or Not yet ReplayKitRecordingState.Available received!"); } ReplayKitManager.Preview(); }
public void Preview() { bool success = ReplayKitManager.Preview(); SetStatus("Preview Recording: " + (success ? "Success" : "Failed")); }