pointerUp method

dynamic pointerUp(
  1. Pointer pointer
)

Implementation

pointerUp(Pointer pointer) {
  if (pointer.button != 0) return;

  if (this.dragging && (this.axis != null)) {
    _mouseUpEvent.mode = this.mode;
    this.dispatchEvent(_mouseUpEvent);
  }

  this.dragging = false;
  this.axis = null;
}