Layer.onTouchMove

機能/意味
Finger moved
タイプ
Layerクラスのイベント
構文
onTouchMove(x, y, cx, cy, id)
引数
x  The value of the x coordinate (in client coordinates) of the touch location.
y  The value of the y coordinate (in client coordinates) of the touch location.
cx  The number of horizontal pixels the finger is touching.
 Always 1 if the device is not compatible.
cy  The number of vertical pixels the finger is touching.
 Always 1 if the device is not compatible.
id  Touch ID.
 At the time of multi-touch, a unique value is set for each position, and the position can be identified by this ID.
説明
 Occurs when a finger on the touch panel moves.
 This event occurs when the X, Y coordinates are in this layer.
 However, unlike the mouse, it is determined by the current coordinates, so it may not be the same as the layer where onTouchDown occurred.