- Home /
Input text dosent always work on mobile devices, Android and iPhone
I have a few input text boxes in a game for the Android and iPhone platforms. These control passwords, user names ect...
Sometimes it is really hard to select the text boxes, I have to click on the multiple times. It is very temperamental. People are getting frustrated with this.
Does anyone else have this problem or any solution?
Thanks Richard
Answer by ElectrikSheep · Jun 18, 2012 at 03:08 PM
You can try to upscale all the GUI :
private void OnGUI(){
float scale = 1.5f ;
GUI.matrix = Matrix4x4.Scale( new Vector3( scale, scale, scale ) ) ;
// Your code
}
But be careful it will upscale all the GUI
Your answer
Follow this Question
Related Questions
Remove "Preview text line" above keyboard input text on Android and iPhone 1 Answer
Mobile game has different behaviors on android and ios 0 Answers
Joystick trouble... 0 Answers
Is it Possible to (tap to focus) using WebCamTexture? 1 Answer
Need Android Help - How do I click and mouseover a 3d object? 1 Answer