Firstborn/Library/PackageCache/com.unity.ads@4.4.2/Runtime/Advertisement/Enums/BannerPosition.cs
Schaken-Mods 9092858a58 updated to the latest editor
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!
2023-05-07 17:43:11 -05:00

38 lines
1.1 KiB
C#

namespace UnityEngine.Advertisements
{
/// <summary>
/// An enum representing the on-screen anchor position of the banner ad.
/// </summary>
public enum BannerPosition
{
/// <summary>
/// Anchor the banner in the top-left corner of the screen.
/// </summary>
TOP_LEFT,
/// <summary>
/// Anchor the banner in the top-center of the screen.
/// </summary>
TOP_CENTER,
/// <summary>
/// Anchor the banner in the top-right corner of the screen.
/// </summary>
TOP_RIGHT,
/// <summary>
/// Anchor the banner in the bottom-left corner of the screen.
/// </summary>
BOTTOM_LEFT,
/// <summary>
/// Anchor the banner in the bottom-center of the screen.
/// </summary>
BOTTOM_CENTER,
/// <summary>
/// Anchor the banner in the bottom-right corner of the screen.
/// </summary>
BOTTOM_RIGHT,
/// <summary>
/// Anchor the banner in the center of the screen.
/// </summary>
CENTER
}
}