Working with delta time, force and rotation

First answer, short: No.
Long: Finterp output value differences from tick to tick depend on how close the current value has progressed towards its target, and the value of delta time. Larger delta time values result in a greater change to the return value, as does larger differences between Current value and Target value.
This is not the case for finterp to Constant. It changes the return value by a value per second.

Second answer, short: Depends.
If you have more than one factor effecting one end value, you can use delta time on all of them without issues.
A car rolling down a hill with a rocket attached to it would have three time dependent factors to its forward movement. One is the acceleration from rolling down a hill, two would be throttle or brakes being applied again resulting in acceleration, three the rocket thrust depending on its state. Calculating the forward movement for a tick would depend on the delta time to be used on each contributing factor, for consistent forward movement results over time.
So use delta time once per time dependent factor contributing to one value to be found and used. It all comes down to figuring out what values needs to be adjusted for time passed.

On a side note, I believe that physics run at different intervals than frame ticks and the results time passed and force added is solved there.

Hope that helps you :slight_smile: