diff --git a/lib/filament_gesture_detector.dart b/lib/filament_gesture_detector.dart index 6d556e49..5aa18add 100644 --- a/lib/filament_gesture_detector.dart +++ b/lib/filament_gesture_detector.dart @@ -103,7 +103,6 @@ class _FilamentGestureDetectorState extends State { ? null : (d) async { _scaling = true; - print("SCALE START"); if (d.pointerCount == 2) { await widget.controller.zoomEnd(); await widget.controller.zoomBegin(); @@ -134,8 +133,6 @@ class _FilamentGestureDetectorState extends State { onPointerSignal: !widget.enableControls ? null : (pointerSignal) async { - print("ponter signal"); - // scroll-wheel zoom on desktop if (pointerSignal is PointerScrollEvent) { _scrollTimer?.cancel(); @@ -154,7 +151,6 @@ class _FilamentGestureDetectorState extends State { onPointerDown: !widget.enableControls ? null : (d) async { - print("piinterodoiwn"); if (d.buttons == kTertiaryButton || _rotating) { await widget.controller.rotateStart( d.localPosition.dx, d.localPosition.dy); @@ -166,7 +162,6 @@ class _FilamentGestureDetectorState extends State { onPointerMove: !widget.enableControls ? null : (d) async { - print("pointermove"); if (d.buttons == kTertiaryButton || _rotating) { await widget.controller.rotateUpdate( d.localPosition.dx, d.localPosition.dy); @@ -178,7 +173,6 @@ class _FilamentGestureDetectorState extends State { onPointerUp: !widget.enableControls ? null : (d) async { - print("pointerup"); if (d.buttons == kTertiaryButton || _rotating) { await widget.controller.rotateEnd(); } else {