Example #1
0
        //! Returns TRUE if the Client Controller Interface has more EscEvents, else returns FALSE
        public static bool hasMoreEvents()
        {
            if (RuntimePlatform.OSXEditor == Application.platform ||
                RuntimePlatform.OSXPlayer == Application.platform)
            {
                return(ControllerInterface_desktop.hasMoreEvents());
            }
            else if (RuntimePlatform.IPhonePlayer == Application.platform)
            {
                return(ControllerInterface_mobile.hasMoreEvents());
            }

            return(false);
        }