/// Gets a controller's tracking status. Although TrackingStatusFlags values are
 /// in practice currently mutually exclusive, returned values should be tested
 /// using bitwise tests.
 public static GvrBetaControllerInput.TrackingStatusFlags GetTrackingStatusFlags(this GvrControllerInputDevice device)
 {
     return(GvrBetaControllerInput.GetTrackingStatusFlags(device.IsDominantHand ? 0 : 1));
 }
 /// Gets a controller's configuration type.  Controller configuration will only
 /// change while the app is paused.
 public static GvrBetaControllerInput.Configuration GetConfigurationType(this GvrControllerInputDevice device)
 {
     return(GvrBetaControllerInput.GetConfigurationType(device.IsDominantHand ? 0 : 1));
 }