// Show a custom notification banner, iOS only public static void ShowCustomNotificationBanner(string title, string message, float duration) { #if UNITY_IOS || UNITY_TVOS GameCenterBinding.showCustomNotificationBanner(title, message, duration); #endif }