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!
19 lines
470 B
C#
19 lines
470 B
C#
namespace UnityEngine.Advertisements {
|
|
public enum UnityAdsCompletionState {
|
|
/// <summary>
|
|
/// A state that indicates that the user skipped the ad.
|
|
/// </summary>
|
|
SKIPPED,
|
|
|
|
/// <summary>
|
|
/// A state that indicates that the ad was played entirely.
|
|
/// </summary>
|
|
COMPLETED,
|
|
|
|
/// <summary>
|
|
/// Default value / Used when no mapping available
|
|
/// </summary>
|
|
UNKNOWN
|
|
}
|
|
}
|