An interface that can be passed to WebViewPrefab.SetPointerInputDetector() or CanvasWebViewPrefab.SetPointerInputDetector() to override how the prefab detects pointer input. For example implementations of this interface, please see 3D WebView's DefaultPointerInputDetector.cs and CanvasPointerInputDetector.cs scripts.
bool PointerMovedEnabled
The prefab sets this property to indicate whether the PointerMoved event should be enabled.
EventHandler<EventArgs<Vector2>> BeganDrag
Indicates the normalized point for the beginning of a drag interaction.
EventHandler<EventArgs<Vector2>> Dragged
Indicates the normalized point for the continuation of a drag interaction.
EventHandler<PointerEventArgs> PointerDown
Indicates a pointer down interaction occurred.
EventHandler<EventArgs<Vector2>> PointerExited
Indicates the normalized point where the pointer exited.
EventHandler<EventArgs<Vector2>> PointerMoved
Indicates the normalized point where the pointer moved.