ControllerManager.EventListener

  • ControllerManager.EventListener receives Daydream controller events in a VR service.

  • It provides two methods: onApiStatusChanged, triggered by API status changes, and onRecentered, triggered by controller reorientation.

  • onApiStatusChanged receives an integer representing the ControllerManager.ApiStatus value.

  • onRecentered signals to recenter head pose using recenterHeadTracker() in response to user action.

public static interface ControllerManager.EventListener

Receives VR Service events related to the Daydream controller.

Public Methods

abstract void
onApiStatusChanged(int status)
Called when the ControllerManager's API changes status.
abstract void
onRecentered()
Called when the user has recentered the controller's orientation.

Public Methods

public abstract void onApiStatusChanged (int status)

Called when the ControllerManager's API changes status. May be called on any thread.

Parameters
status a ControllerManager.ApiStatus value.

public abstract void onRecentered ()

Called when the user has recentered the controller's orientation. The application should recenter the head pose via recenterHeadTracker()