Hi,
I have a problem assigning an OnDragFinished-Handler with:
scrollView.onDragFinished += OnDragFinished; //in my Start())
because there is another OnDragFinished in UICenterOnChild which is assigned in Recenter line 85 via "=".
This overrides my delegate call and my own OnDragFinished is never called.
I can fix it if I add a "+=" in line 85 but I don't know if that's the right approach.
NGUI: 3.7.4
I appreciate your help.