Пример #1
0
 void StartRecording()
 {
     WaitForModuleToBeReady();
     renderStopButton = isRecording = true;
     StartRecordedPlaybackFromEditor.StartRecording();
     SetUpView();
 }
Пример #2
0
 void StartCrawl()
 {
     WaitForModuleToBeReady();
     renderStopButton = true;
     StartRecordedPlaybackFromEditor.StartRecording();
     ReportingManager.InitializeReport();
     rootVisualElement.schedule.Execute(() => {
         startCrawl = true;
     }).ExecuteLater(2000);
     SetUpView();
 }
Пример #3
0
 private void PlayRecording(string recordingFilePath)
 {
     StartRecordedPlaybackFromEditor.StartPlayback(recordingFilePath);
 }
 private void ContinueCompositeRecording()
 {
     isPlayMode = false;
     playModeStartedFromHere = true;
     StartRecordedPlaybackFromEditor.EnterExtendModeAndRecord();
 }
 private void StartNewRecording()
 {
     isPlayMode = false;
     playModeStartedFromHere = true;
     StartRecordedPlaybackFromEditor.StartRecording();
 }
 private void PlayRecording(string recordingFilePath)
 {
     isPlayMode = false;
     playModeStartedFromHere = true;
     StartRecordedPlaybackFromEditor.StartPlayback(recordingFilePath);
 }