Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }