I’m doing an Android based ‘Joypad’ type of thing, and thought I could use NGUI, but it appears not - or did I miss something?Here's the deal:
- 3 by 3 buttons in a square
- User touch any, and it’s selected instantly
Check to the above, not a problem.
Problems:Scenario 1: - After selecting the first ‘pad’, user moves finger, and I’d like what ever is hovered to be selected, continuously around on the pad.
Not possible, right??
Scenario 2:- User starts finger outside 3 by 3, drags finger in to touch any 3 by 3 - and I’d like to activate the one touched.
Not possible either, right?
Because of the limitations in the event system:
void OnHover (bool isOver) – Sent out when the mouse hovers over the collider or moves away from it.
Not sent on touch-based devices.So this task / type of Joypad cannot be done with NGUI, right?Thanks.