getJoystickXRaw() public method

public getJoystickXRaw ( ) : byte
return byte
Ejemplo n.º 1
0
 public virtual bool updateJoystick(JoystickReport report)
 {
     if (connected)
     {
         return vmulti_update_joystick(vmulti, report.getButtonsRaw(), report.getPOVRaw(), report.getJoystickXRaw(), report.getJoystickYRaw(), 0, 128, 0);
     }
     else
     {
         return false;
     }
 }
Ejemplo n.º 2
0
 public virtual bool updateJoystick(JoystickReport report)
 {
     if (connected)
     {
         return(vmulti_update_joystick(vmulti, report.getButtonsRaw(),
                                       report.getPOVRaw(), report.getJoystickXRaw(), report.getJoystickYRaw(), 0, 128, 0));
     }
     else
     {
         return(false);
     }
 }