Slight tweak to improve upon the last merge

This commit is contained in:
Gregory Campbell
2019-12-11 21:33:57 -05:00
parent b83c37531a
commit 31fc08bd5b
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ public class PlayerController : MonoBehaviour
float yStore = moveDirection.y;
//Need to switch to 'raw' when using keyboard
moveDirection = (transform.forward * Input.GetAxisRaw("Vertical")) + (transform.right * Input.GetAxisRaw("Horizontal"));
moveDirection = (transform.forward * Input.GetAxis("Vertical")) + (transform.right * Input.GetAxis("Horizontal"));
if (jump <= 1)
{