Hello, i have some problems with NGUI scripts. The simplest method to show what is, it is to open Example 12 scene. I can use chat, and when I click on any different widget then UIInput, and click on button Enter, the focus(Selected) don`t set to UIInput. Why?
void Update()
{
if (Input.GetKeyUp(KeyCode.Return))
{
mInput.selected = true;
}
}
Why it is dont work after click on different widgets?