onTouchMove

open override fun onTouchMove(start: Xy, end: Xy)

Single pointer touch move event. Touch move mode is enabled by performing a pointer touch immediately followed by a pointer down in same screen area, and then move.

Parameters

start

is the previous position involved in move action

end

is the current position involved in move action


var onTouchMove: (start: Xy, end: Xy) -> Unit?

Single pointer touch move event. Lambda Signature: (start: Xy, end: Xy) -> Unit Touch move mode is enabled by performing a pointer touch immediately followed by a pointer down in same screen area, and then move.

Parameters

start

is the previous position involved in move action

end

is the current position involved in move action