Skip to content

Commit

Permalink
make mobs have to accelerate a bit to move or stop
Browse files Browse the repository at this point in the history
  • Loading branch information
DEATHB4DEFEAT committed Jan 28, 2024
1 parent faa2072 commit 28cd3be
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ public sealed partial class MovementSpeedModifierComponent : Component
public const float DefaultWeightlessModifier = 0.7f;
public const float DefaultWeightlessAcceleration = 1f;

public const float DefaultAcceleration = 20f;
public const float DefaultFriction = 20f;
public const float DefaultFrictionNoInput = 20f;
// Parkstation-AcceleratingMovement Start
public const float DefaultAcceleration = 8f;
public const float DefaultFriction = 8f;
public const float DefaultFrictionNoInput = 8f;
// Parkstation-AcceleratingMovement End

public const float DefaultBaseWalkSpeed = 3f;
public const float DefaultBaseSprintSpeed = 5f;
Expand Down

0 comments on commit 28cd3be

Please sign in to comment.