Exemplo n.º 1
0
 public static extern int XInputSetState
 (
     int dwUserIndex,  // [in] Index of the gamer associated with the device
     ref XInputVibration pVibration    // [in, out] The vibration information to send to the controller
 );
Exemplo n.º 2
0
 public static extern int XInputSetState
 (
     int dwUserIndex, 
     ref XInputVibration pVibration 
 );
Exemplo n.º 3
0
 public static extern int XInputSetState
 (
     int dwUserIndex,
     ref XInputVibration pVibration
 );
Exemplo n.º 4
0
 public static extern int XInputSetState
 (
     int dwUserIndex,               // [in] Index of the gamer associated with the device
     ref XInputVibration pVibration // [in, out] The vibration information to send to the controller
 );
Exemplo n.º 5
0
 public void Vibrate(XInputVibration strength)
 {
     _stopMotorTimerActive = false;
     XInput.XInputSetState(_playerIndex, ref strength);
 }