Change walking input to WASD

This commit is contained in:
Riyyi
2021-02-23 01:49:23 +01:00
parent 10f83431f2
commit 044d108120
+3 -3
View File
@@ -15,9 +15,9 @@ sf::Keyboard::Key InputManager::KeyboardConfiguration(Input key) {
// Down,
if(key == Left) return sf::Keyboard::A;
if(key == Right) return sf::Keyboard::E;
if(key == Up) return sf::Keyboard::Comma;
if(key == Down) return sf::Keyboard::O;
if(key == Right) return sf::Keyboard::D;
if(key == Up) return sf::Keyboard::W;
if(key == Down) return sf::Keyboard::S;
if(key == LoadMap) return sf::Keyboard::L;
return sf::Keyboard::Unknown;