Abstract class which is responsible for tracking transform data for a VR headset. More...
Public Member Functions | |
abstract GTransform | QueryGTransform () |
Generate the data representing the necessary transform data for a given controller More... | |
abstract bool | GestureActive () |
This method will query the controller to determine whether the gesture should be tracked or not. More... | |
Abstract class which is responsible for tracking transform data for a VR headset.
Although we have only provided support for Oculus Rift Touch Controllers, any headset may be used if an appropriate concrete implementation of this class is created
|
pure virtual |
This method will query the controller to determine whether the gesture should be tracked or not.
The most common implementation of this method simply returns whether a specific button is pressed.
true
if a gesture should be active, false
otherwiseImplemented in Gestures.TouchController.
|
pure virtual |
Generate the data representing the necessary transform data for a given controller
GTransform
instance containing transform dataImplemented in Gestures.TouchController.