public static bool GetKey(KeyCode key)
    {
#if UNITY_STANDALONE
        return(Input.GetKey(key));
#elif UNITY_IOS || UNITY_ANDROID
        return(instance.GetTouchInput(key));
#endif
    }