VMultiDllWrapper.JoystickReport.getJoystickXRaw C# (CSharp) 메소드

getJoystickXRaw() 공개 메소드

public getJoystickXRaw ( ) : byte
리턴 byte
        public byte getJoystickXRaw()
        {
            return (byte)(joystickX * 127);
        }

Usage Example

예제 #1
0
파일: VMulti.cs 프로젝트: simphax/VMultiDll
 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;
     }
 }
All Usage Examples Of VMultiDllWrapper.JoystickReport::getJoystickXRaw