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!
24 lines
586 B
C#
24 lines
586 B
C#
namespace UnityEngine.Advertisements {
|
|
public enum UnityAdsInitializationError {
|
|
/// <summary>
|
|
/// Default value / Used when no mapping available
|
|
/// </summary>
|
|
UNKNOWN,
|
|
|
|
/// <summary>
|
|
/// Error related to environment or internal services
|
|
/// </summary>
|
|
INTERNAL_ERROR,
|
|
|
|
/// <summary>
|
|
/// Error related to invalid arguments
|
|
/// </summary>
|
|
INVALID_ARGUMENT,
|
|
|
|
/// <summary>
|
|
/// Error related to url being blocked
|
|
/// </summary>
|
|
AD_BLOCKER_DETECTED
|
|
}
|
|
}
|