cancel
Showing results for 
Search instead for 
Did you mean: 

Cant open system keyboard on Quest 2

paulcool88
Explorer

I can't seem to open the system keyboard on Quest 2. I open it like this:

        keyboard = TouchScreenKeyboard.Open("Hello", TouchScreenKeyboardType.Default);
        keyboard.active = true;
        TouchScreenKeyboard.hideInput = false;
        TouchScreenKeyboard.Android.consumesOutsideTouches = true;
        TouchScreenKeyboard.Android.closeKeyboardOnOutsideTap = false;

but it seems to close straightaway. When I check the status with keyboard.status its always returning done. In the OVRManager I set requires system keyboard to true.

1 ACCEPTED SOLUTION

Accepted Solutions

paulcool88
Explorer

Okay I think I figured out what the problem was. If the keyboard is opened while the trigger is held, the keyboard seems to think you presses accept right away. My keyboard was being activated from a press down on the trigger button. I changed it to use the button release and it worked.

View solution in original post

1 REPLY 1

paulcool88
Explorer

Okay I think I figured out what the problem was. If the keyboard is opened while the trigger is held, the keyboard seems to think you presses accept right away. My keyboard was being activated from a press down on the trigger button. I changed it to use the button release and it worked.