public InteractionInformation(HumanBodyPart part, XrGeneralSettings settings)
 {
     _settings = settings;
     Part      = part;
 }
 public PlayerHandController(IPlayerInputUpdater inputUpdater, XrGeneralSettings generalSettings)
 {
     _inputUpdater    = inputUpdater;
     _generalSettings = generalSettings;
 }
Example #3
0
 public PlayerHandInputDevice(HumanBodyPart part, XrGeneralSettings settings)
 {
     TrackingInformation    = new TrackingInformation(part);
     InteractionInformation = new InteractionInformation(part, settings);
 }