BITFALL/Assets/WSM Game Studio/Train Controller_v3/Shared/Scripts/GeneralSettings.cs

13 lines
386 B
C#
Raw Normal View History

2024-03-22 20:16:32 +08:00
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;
}
}