설명 없음
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 704B

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