AI-generated Key Takeaways
-
Controller.EventListenerhandles events related to the Google VR Controller. -
It provides callbacks for connection state changes and controller updates.
-
onConnectionStateChangedis triggered when the controller's connection status changes. -
onUpdateis called when the controller's physical state is updated due to user interaction or motion.
public static class
Controller.EventListener
Listens for various classes of events related to the Controller.
Public Constructors
Public Methods
| void |
onConnectionStateChanged(int state)
Called when the Controller's connection changes state.
|
| void |
onUpdate()
Called when the Controller's physical state has changed due to motion or other user actions.
|
Inherited Methods
Public Constructors
public Controller.EventListener ()
Public Methods
public void onConnectionStateChanged (int state)
Called when the Controller's connection changes state. May be called on any thread.
Parameters
| state | a Controller.ConnectionStates value.
|
|---|
public void onUpdate ()
Called when the Controller's physical state has changed due to motion or other user actions. May be called on any thread.