Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - BFSKyle

Pages: [1]
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:

  1. if (ch >= ' ') Insert(ch.ToString());

To:

  1. 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.

Pages: [1]