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