Example #1
0
 public void Initialise()
 {
     if (ReplayKitManager.IsRecordingAPIAvailable())
     {
         ReplayKitManager.Initialise();
     }
     else
     {
         Debug.LogError("Recording API not available!");
     }
 }
Example #2
0
 public void StartRecording()
 {
     if (ReplayKitManager.IsRecordingAPIAvailable())
     {
         ReplayKitManager.StartRecording(true);
     }
     else
     {
         Debug.LogError("Recording API not available!");
     }
 }
Example #3
0
        public void IsRecordingAPIAvailable()
        {
            bool isAvailable = ReplayKitManager.IsRecordingAPIAvailable();

            SetStatus("Recording API Available : " + isAvailable);
        }