Question simple- is it posible to get value from OnScreenKeyboard like from Input.inputString
property ?
Ok here is solution.
TouchScreenKeyboard touch;
void FixedUpdate()
{
fieldFocused = TouchScreenKeyboard.visible;
if (touch != null && !string.IsNullOrEmpty(touch.text))
txt.text = touch.text;
}
public void FocusControl()
{
touch = TouchScreenKeyboard.Open("");
}
This is how you can access TouhcScreenKeyboard
variable text
.