I am building a Unity game for mobile. I have implemented touch tracking system for it to move game object around.
foreach (Touch touch in Input.touches)
{ ...}
When the user finishes moving I do a raycast and find out the object it hit.
When I add NGUI interface to the game the raycast is going through the NGUI buttons.
Is there a NGUI touch system that I can use to manage game objects?