Reduced movement speed Player

This commit is contained in:
louishorlaville 2022-10-24 22:51:57 -04:00
parent 709aad20f0
commit 4f049341ae
2 changed files with 1 additions and 2 deletions

View File

@ -274,7 +274,7 @@ MonoBehaviour:
rb: {fileID: 1772573266731274174} rb: {fileID: 1772573266731274174}
canWalk: 1 canWalk: 1
canJump: 1 canJump: 1
movementSpeed: 0.8 movementSpeed: 0.3
maxMovementSpeed: 20 maxMovementSpeed: 20
jumpPower: 3 jumpPower: 3
afterJumpHorizontalSlowdownTime: 1 afterJumpHorizontalSlowdownTime: 1

View File

@ -145,6 +145,5 @@ public class CharacterMovement : MonoBehaviour
rb.velocity = new Vector3(limitedVel.x, rb.velocity.y, limitedVel.z); rb.velocity = new Vector3(limitedVel.x, rb.velocity.y, limitedVel.z);
} }
} }
} }
} }