|
@@ -51,7 +51,8 @@ Player::Player():
|
|
|
_inputMap.map(2, Input(sf::Joystick::Axis::Y, true));
|
|
|
_inputMap.map(3, Input(sf::Joystick::Axis::Z, false));
|
|
|
_inputMap.map(4, Input(sf::Joystick::Axis::Z, true));
|
|
|
- _inputMap.map(5, Input(7));
|
|
|
+ _inputMap.map(5, Input(13));
|
|
|
+ _inputMap.map(6, Input(15, Input::Type::Pressed));
|
|
|
}
|
|
|
else
|
|
|
{
|
|
@@ -60,9 +61,9 @@ Player::Player():
|
|
|
_inputMap.map(3, Input(sf::Keyboard::A));
|
|
|
_inputMap.map(4, Input(sf::Keyboard::D));
|
|
|
_inputMap.map(5, Input(sf::Keyboard::Space));
|
|
|
+ _inputMap.map(6, Input(sf::Keyboard::LControl, Input::Type::Pressed));
|
|
|
}
|
|
|
_inputMap.map(40, Input(sf::Keyboard::F9, Input::Type::Pressed));
|
|
|
- _inputMap.map(6, Input(sf::Keyboard::LControl, Input::Type::Pressed));
|
|
|
|
|
|
/**
|
|
|
* Input lambdas
|