I set up a script where I setup a textfield to have the user input some values. When the user finish inputs and press enter. I would ask a different question and create another textfield for the user to input and press enter. The problem is after pressing enter in the first question, somehow Input.GetKeyDown(keycode.return) doesn’t get reset fast enough and skip the next question because Input.Getkeydown(keycode.return) is still true (the script manual) says it gets reset each frame). Is there a way to fix this?
Can you post a sample code snippet?