public static InputControlScheme OrWithOptionalDevice(this InputControlScheme scheme, string controlPath)
 {
     return(new ControlSchemeSyntax(scheme).OrWithOptionalDevice(controlPath).Finish());
 }
 public static InputControlScheme WithRequiredDevice(this InputControlScheme scheme, string controlPath)
 {
     return(new ControlSchemeSyntax(scheme).WithRequiredDevice(controlPath).Finish());
 }
Beispiel #3
0
 public static void Enable(this InputActionAssetReference assetReference, InputControlScheme scheme)
 {
     throw new NotImplementedException();
 }
 public static InputControlScheme WithBindingGroup(this InputControlScheme scheme, string bindingGroup)
 {
     return(new ControlSchemeSyntax(scheme).WithBindingGroup(bindingGroup).Finish());
 }
Beispiel #5
0
 public static void Enable(this InputAction action, InputControlScheme scheme)
 {
     throw new NotImplementedException();
 }