/* (non-Javadoc)
* @see com.jMT.input.gestureAction.IGestureAction#processGesture(com.jMT.input.inputAnalyzers.GestureEvent)
*/
public boolean processGestureEvent(MTGestureEvent g) {
if (g instanceof ZoomEvent){
ZoomEvent ze = (ZoomEvent)g;
ze.getCamera().zoomAmount(ze.getCamZoomAmount());
ze.getCamera().update();
}
return false;
}