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.

ITestPlayerBuildModifier.cs 720B

1234567891011121314151617
  1. using System;
  2. namespace UnityEditor.TestTools
  3. {
  4. /// <summary>
  5. /// An interface for a callback modifying the <see cref="BuildPlayerOptions"/> when building a player for running tests in the runtime.
  6. /// </summary>
  7. public interface ITestPlayerBuildModifier
  8. {
  9. /// <summary>
  10. /// A callback to modify the <see cref="BuildPlayerOptions"/> when building a player for test run. Return the modified version of the provided build options.
  11. /// </summary>
  12. /// <param name="playerOptions">The unmodified BuildPlayerOptions.</param>
  13. /// <returns>The modified BuildPlayerOptions.</returns>
  14. BuildPlayerOptions ModifyOptions(BuildPlayerOptions playerOptions);
  15. }
  16. }