Skip to content

Commit

Permalink
Update PawnController
Browse files Browse the repository at this point in the history
- Reduced ground angle to slide from steep slopes
  • Loading branch information
selimnahimi committed Sep 3, 2023
1 parent 557810f commit e8071a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/pawn/PawnController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial class PawnController : EntityComponent<Pawn>
public bool Noclipping { get; set; }

public int StepSize => 26;
public int GroundAngle => 200;
public int GroundAngle => 50;
public int JumpSpeed => 300;
public float Gravity => 800f;
public float StartingSpeed => 1000f;
Expand Down

0 comments on commit e8071a6

Please sign in to comment.