Touch control for mobile very sluggish

Sorry, gotta re-open this. Even though it works perfectly, there is a bug. When looking around, if you use the joystick at the same time, the camera gets very crazy and spins around.
 
This is likely because the joystick is mapped to the same button mapping. For this to work you should use a button mapping that is completely independent with the touchpad compared to any of the other inputs.
 
What if you change line 94 of VirtualTouchpad to:

Code:
            if (m_UseAxisInput && (buttonName == m_HorizontalInputName || buttonName == m_VerticalInputName)) {
 
What if you change line 94 of VirtualTouchpad to:

Code:
            if (m_UseAxisInput && (buttonName == m_HorizontalInputName || buttonName == m_VerticalInputName)) {
Unfortunately no it did not fix. However, I have managed to get Rewired working properly so I can move on now. Thank you. Hopefully you can still fix though.
 
Top