Exemplo n.º 1
0
    public static void setTextMode(string identifier)
    {
                #if UNITY_IOS && !UNITY_EDITOR
        TapInputIOS.setTextMode(identifier);
                #endif

                #if UNITY_ANDROID && !UNITY_EDITOR
        TapInputAndroid.Instance.StartTextMode(identifier);
                #endif
    }
Exemplo n.º 2
0
    public static void setDebugLogging(bool enabled)
    {
                #if UNITY_IOS && !UNITY_EDITOR
        TapInputIOS.setDebugLogging(enabled);
                #endif

                #if UNITY_ANDROID && !UNITY_EDITOR
        if (enabled)
        {
            TapInputAndroid.Instance.EnableDebug();
        }
        else
        {
            TapInputAndroid.Instance.DisableDebug();
        }
                #endif
    }
Exemplo n.º 3
0
 public static void startTAPInputManager()
 {
             #if UNITY_IOS && !UNITY_EDITOR
     TapInputIOS.startTAP();
             #endif
 }