AndroidInput provides support for off-screen touch input, such as a touchpad.

Esempio n. 1
0
        /// <summary>
        ///   <para>Returns object representing status of a specific touch on a secondary touchpad (Does not allocate temporary variables).</para>
        /// </summary>
        /// <param name="index"></param>
        public static Touch GetSecondaryTouch(int index)
        {
            Touch touch;

            AndroidInput.INTERNAL_CALL_GetSecondaryTouch(index, out touch);
            return(touch);
        }
Esempio n. 2
0
        public static Touch GetSecondaryTouch(int index)
        {
            Touch result;

            AndroidInput.INTERNAL_CALL_GetSecondaryTouch(index, out result);
            return(result);
        }