Is there no way to get Unity to select a TextMesh Pro Inputfield when a form opens so it has the focus so the user does not have to tap/click the field first to then be able to enter text?
I’ve tried all manner of approaches my last being:
EventSystem.current.SetSelectedGameObject(userInput.gameObject);
userInput.OnPointerClick(null);
All to no avail.