Merge branch 'master' into walk_button

This commit is contained in:
Gregory Campbell
2019-09-30 21:31:20 -04:00
committed by GitHub
2 changed files with 57 additions and 42 deletions
+2 -1
View File
@@ -32,7 +32,8 @@ public class PlayerController : MonoBehaviour
if (extraJump == true)
{
moveDirection = moveDirection.normalized * speed; //Remove this line to make running diagonal the fastest standard run
} else {
} else
{
moveDirection = (moveDirection.normalized * speed)/4; //Remove this line to make running diagonal the fastest standard run
}