it should open just with this right?
i even put this in the update method but my keyboard wont open
public void ShowKeyboardInput()
{
TouchScreenKeyboard.Open("", TouchScreenKeyboardType.NumbersAndPunctuation);
}
it should open just with this right?
i even put this in the update method but my keyboard wont open
public void ShowKeyboardInput()
{
TouchScreenKeyboard.Open("", TouchScreenKeyboardType.NumbersAndPunctuation);
}
The code you provided should be enough to open the keyboard, as long as that code is called (ShowKeyboardInput in your case). Don’t add it in the update method as that will likely won’t work since the app will try to constantly open-close-open-close-open-close the keyboard. Instead add a button and try to open the keyboard after the button is pressed. You can take a look at code samples here https://docs.unity3d.com/ScriptReference/TouchScreenKeyboard.Open.html