13 lines
386 B
C#
13 lines
386 B
C#
|
namespace WSMGameStudio.RailroadSystem
|
|||
|
{
|
|||
|
public static class GeneralSettings
|
|||
|
{
|
|||
|
public const float IdleDrag = 0.05f;
|
|||
|
public const float WheelsMaxAngularVelocity = 50f;
|
|||
|
public const float DownForceFactor = 8f;
|
|||
|
public const float MinSpeed = 0f;
|
|||
|
public const float MaxSpeedKph = 105f;
|
|||
|
public const float MaxSpeedMph = 65f;
|
|||
|
}
|
|||
|
}
|