05-07-2024 06:50 AM
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.
Solved! Go to Solution.
05-13-2024 03:49 AM
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.
05-13-2024 03:49 AM
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.