paddle problem

This commit is contained in:
Ed
2024-11-12 23:21:33 +03:00
parent c33c655911
commit 3249bcfbcb
4 changed files with 12 additions and 5 deletions

View File

@@ -60,9 +60,9 @@ namespace Content.Server.Shuttles.Components
/// Damping applied to the shuttle's physics component when not in FTL.
/// </summary>
[DataField("linearDamping"), ViewVariables(VVAccess.ReadWrite)]
public float LinearDamping = 0.05f;
public float LinearDamping = 0.5f;//0.05f; //CP14 - the ocean is much denser than space, you know.
[DataField("angularDamping"), ViewVariables(VVAccess.ReadWrite)]
public float AngularDamping = 0.05f;
public float AngularDamping = 0.5f; //0.05f; //CP14 - the ocean is much denser than space, you know.
}
}