UnRegisterVirtualAxis() public method

public UnRegisterVirtualAxis ( string name ) : void
name string
return void
Ejemplo n.º 1
0
 public static void UnRegisterVirtualAxis(string name)
 {
     if (name == null)
     {
         throw new ArgumentNullException("name");
     }
     activeInput.UnRegisterVirtualAxis(name);
 }