Tasharen Entertainment Forum
Support => NGUI 3 Support => Topic started by: ppc on October 28, 2013, 03:24:06 AM
Title:
Report UIInput bug. value of all UIInput in scene synchronized in mobile.
Post by:
ppc
on
October 28, 2013, 03:24:06 AM
When I made plural input in one scene in the Mobile environment, value of all input synchronized.
Version 3.0.3c
NGUI/Scripts/UI/UIInput.cs
line:397-
#if MOBILE
void
Update
(
)
{
// Fix bug.
if
(
mKeyboard
!=
null
&&
isSelected
&&
NGUITools
.
IsActive
(
this
)
)
{
string
val
=
mKeyboard
.
text
;
if
(
mValue
!=
val
)
Title:
Re: Report UIInput bug. value of all UIInput in scene synchronized in mobile.
Post by:
ArenMook
on
October 29, 2013, 01:35:33 AM
Thanks!