/// Returns true if an impression (interstitial or more apps page) is currently visible
        /// Due to Unity optimizations, touch events will pass through Chartboost impressions.
        /// You will have to use this method to check if a Chartboost impression is open in any code that responds to touch events
        public static bool isImpressionVisible()
        {
            if (!checkInitialized())
            {
                return(false);
            }

            return(CBManager.isImpressionVisible());
        }
示例#2
0
 public static bool isImpressionVisible()
 {
     return(CBBinding.checkInitialized() && CBManager.isImpressionVisible());
 }