We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10f765 commit 429416bCopy full SHA for 429416b
Assets/ExpMngr/Scripts/ExperimentSession.cs
@@ -429,7 +429,9 @@ void SaveResults()
429
List<OrderedResultDict> results = trials.Select(t => t.result).ToList();
430
string fileName = "trial_results.csv";
431
string filePath = Path.Combine(sessionPath, fileName);
432
- fileIOManager.Manage(new System.Action(() => fileIOManager.WriteTrials(results, filePath)));
+
433
+ // in this case, write in main thread to block aborting
434
+ fileIOManager.WriteTrials(results, filePath);
435
}
436
437
/// <summary>
0 commit comments