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)
{
+2 -2
View File
@@ -16,7 +16,7 @@ InputManager:
gravity: 1000
dead: 0.001
sensitivity: 3
snap: 1
snap: 0
invert: 0
type: 0
axis: 0
@@ -32,7 +32,7 @@ InputManager:
gravity: 1000
dead: 0.001
sensitivity: 3
snap: 1
snap: 0
invert: 0
type: 0
axis: 0