9092858a58
I updated everything to the latest Unity Editor. Also realized I had the wrong shaders on my hairs, those are fixed and the hairs look MUCH better!
22 lines
654 B
C#
22 lines
654 B
C#
namespace UnityEngine.Advertisements
|
|
{
|
|
/// <summary>
|
|
/// An enum passed to <a href="../api/Advertisements.ShowResult.html">ShowOptions.resultCallback</a> after the ad has finished, indicating the result.
|
|
/// </summary>
|
|
public enum ShowResult
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the ad failed to display.
|
|
/// </summary>
|
|
Failed,
|
|
/// <summary>
|
|
/// Indicates that the player did not allow the ad to complete.
|
|
/// </summary>
|
|
Skipped,
|
|
/// <summary>
|
|
/// Indicates that the player watched the ad to completion.
|
|
/// </summary>
|
|
Finished
|
|
}
|
|
}
|