Example #1
0
 private void OnKeyboardClosed(object[] args)
 {
     if (activeKeyboard != this)
         return;
     keyboardShowing = false;
     activeKeyboard = null;
 }
Example #2
0
 private void KeyboardDemo_Clicked()
 {
     if(!keyboardShowing)
     {
         keyboardShowing = true;
         activeKeyboard = this;
         SteamVR.instance.overlay.ShowKeyboard(0, 0, "Description", 256, text, minimalMode, 0);
     }
 }
Example #3
0
 private void KeyboardDemo_Clicked()
 {
     if (!keyboardShowing)
     {
         keyboardShowing = true;
         activeKeyboard  = this;
         SteamVR.instance.overlay.ShowKeyboard(0, 0, "Description", 256, text, minimalMode, 0);
     }
 }
Example #4
0
 private void OnKeyboardClosed(object[] args)
 {
     if (activeKeyboard != this)
     {
         return;
     }
     keyboardShowing = false;
     activeKeyboard  = null;
 }
Example #5
0
 private void KeyboardDemo_Clicked()
 {
     if (!keyboardShowing)
     {
         keyboardShowing = true;
         activeKeyboard  = this;
         SteamVR.instance.overlay.ShowKeyboard((int)EGamepadTextInputMode.k_EGamepadTextInputModeNormal, (int)EGamepadTextInputLineMode.k_EGamepadTextInputLineModeSingleLine, (uint)KeyboardFlags, "Description", 256, text, 0);
     }
 }
Example #6
0
 private void OnKeyboardClosed(VREvent_t ev)
 {
     if (activeKeyboard != this)
     {
         return;
     }
     keyboardShowing = false;
     activeKeyboard  = null;
 }