Files
Car-Physics-Godot/Scripts/Util.cs
2026-04-17 12:38:11 +02:00

7 lines
148 B
C#

public static class Util
{
public static double Lerp(double start, double end, double t)
{
return start * (1 - t) + end * t;
}
}