Hi,
No idea if that was reported or not, but just in case:
when you use UIScrollView OnPan method it's still using "scale" field, which was deprecated.
NGUI after upgrade sets it to 0 thus making it impossible to use OnPan method.
change
if (scale.x != 0) Scroll(delta.x);
else if (scale.y != 0f) Scroll(delta.y);
to
if (delta.x != 0) Scroll(delta.x);
else if (delta.y != 0f) Scroll(delta.y);
p.s it's incredible dumb to ask to enter TNET and NGUI names with registration, I was using NGUI for some years, but didn't had any idea what Tasharen network package is and was forced to spend my time to figure that out gosh
p.p.s on gmail the forum activation mail falls to spam by default