1
NGUI 3 Support / Re: UIInput bugs in 3.0.8f3
« on: February 19, 2014, 11:17:23 PM »
For the Arrow Keys, a simple work around is to filter out the arrow keys in the input string.
I managed to get arrows working properly again by changing UIInput.cs line 515 from:
To:
That fixed it up for me. This was only tested on my Mac, so not sure if it has any side effects on Windows.
I managed to get arrows working properly again by changing UIInput.cs line 515 from:
- if (ch >= ' ') Insert(ch.ToString());
To:
- if (ch >= ' ' && ch != 63234 && ch != 63235) Insert(ch.ToString());
That fixed it up for me. This was only tested on my Mac, so not sure if it has any side effects on Windows.
