Revert "Fixed multitouch device after some modifications in player controller"
This reverts commit b359a3387f.
The original controller handling is brought back
This commit is contained in:
@@ -340,13 +340,11 @@ void MultitouchDevice::updateAxisX(float value)
|
||||
if (value < -m_deadzone_center)
|
||||
{
|
||||
float factor = getSteeringFactor(std::abs(value));
|
||||
m_controller->action(PA_STEER_RIGHT, 0);
|
||||
m_controller->action(PA_STEER_LEFT, int(factor * Input::MAX_VALUE));
|
||||
}
|
||||
else if (value > m_deadzone_center)
|
||||
{
|
||||
float factor = getSteeringFactor(std::abs(value));
|
||||
m_controller->action(PA_STEER_LEFT, 0);
|
||||
m_controller->action(PA_STEER_RIGHT, int(factor * Input::MAX_VALUE));
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user