Commit 1733117d by Philipp Adolf

Change keys used for dashing

Player one now uses space, player two uses right control
parent e4bd7224
...@@ -49,11 +49,11 @@ public class PlayerControl : MonoBehaviour ...@@ -49,11 +49,11 @@ public class PlayerControl : MonoBehaviour
{ {
case 1: case 1:
setKeyCodes(KeyCode.D, KeyCode.A, KeyCode.W, KeyCode.S, KeyCode.LeftShift); setKeyCodes(KeyCode.D, KeyCode.A, KeyCode.W, KeyCode.Space, KeyCode.LeftShift);
break; break;
case 2: case 2:
setKeyCodes(KeyCode.RightArrow, KeyCode.LeftArrow, KeyCode.UpArrow, KeyCode.DownArrow, KeyCode.RightShift); setKeyCodes(KeyCode.RightArrow, KeyCode.LeftArrow, KeyCode.UpArrow, KeyCode.RightControl, KeyCode.RightShift);
break; break;
//TODO player 3 and 4 //TODO player 3 and 4
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment