示例#1
0
        public static void StartScreenRecording(ScreenRecordOutput outputType, ScreenRecordStartMethod startMethod, TaskSettings taskSettings = null)
        {
            if (taskSettings == null)
            {
                taskSettings = TaskSettings.GetDefaultTaskSettings();
            }

            ScreenRecordManager.StartStopRecording(outputType, startMethod, taskSettings);
        }
示例#2
0
 public static void AbortScreenRecording()
 {
     ScreenRecordManager.AbortRecording();
 }