public bool CustomZoomEvent(){
if(isTwoFingered){
//do a custom thing with 2 finger touch instead, blocking ngui
UICamera.current = null;
UICamera.currentTouch = null;
UICamera.mTouches.Clear();
Debug.Log ("doing a thing!");
return true;
}
else{
return false;
Debug.Log ("not doing a thing.");
}
}