class MAGES::Interaction::HandTrackingVerticalLocomotionHandler

Overview

Handles the vertical locomotion button events during hand tracking. More…

class HandTrackingVerticalLocomotionHandler:
    public MonoBehaviour,
    public IPointerDownHandler,
    public IPointerUpHandler,
    public IDragHandler
{
public:
    // methods

    void OnPointerDown(PointerEventData eventData);
    void OnPointerUp(PointerEventData eventData);
    void OnDrag(PointerEventData eventData);
};

Detailed Documentation

Handles the vertical locomotion button events during hand tracking.

Methods

void OnPointerDown(PointerEventData eventData)

Called when the button is pressed.

Parameters:

eventData

The event data related to the button press.

void OnPointerUp(PointerEventData eventData)

Called when the button is released.

Parameters:

eventData

The event data related to the button release.

void OnDrag(PointerEventData eventData)

Called when the button is dragged.

Parameters:

eventData

The event data related to the button drag.