Hi,
I'm wondering whether I need to remove event listeners when a scene has ended, typically I will put in a -= for events in the OnDisable method, but for NGUI events, should I do the same thing:
UIEventListener.Get(myButton).onClick -= UIButtonPressed;
or do these get removed by NGUI?
-JJ