void StartRecording() { WaitForModuleToBeReady(); renderStopButton = isRecording = true; StartRecordedPlaybackFromEditor.StartRecording(); SetUpView(); }
void StartCrawl() { WaitForModuleToBeReady(); renderStopButton = true; StartRecordedPlaybackFromEditor.StartRecording(); ReportingManager.InitializeReport(); rootVisualElement.schedule.Execute(() => { startCrawl = true; }).ExecuteLater(2000); SetUpView(); }
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); }