No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SaveUndoIndexTask.cs 395B

123456789101112131415
  1. using System;
  2. using System.Collections;
  3. namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks
  4. {
  5. internal class SaveUndoIndexTask : TestTaskBase
  6. {
  7. internal Func<int> GetUndoGroup = Undo.GetCurrentGroup;
  8. public override IEnumerator Execute(TestJobData testJobData)
  9. {
  10. testJobData.undoGroup = GetUndoGroup();
  11. yield break;
  12. }
  13. }
  14. }