What the unit expected for InterpSpeed parameter of TinterpTo ?

I try to smooth somes actor transform over network and its the first time i use this function, it seem to work but can you confirm me that interspeed unit is METER PER SECOND ?

or it has to be a value between 0 and 1 ? :o

The function’s parameters are confusingly named.

InterpSpeed is a simple factor, DeltaTime is multiplied by it.

Set InterpSpeed to 1.0 and you can interpolate between ‘current’ to ‘target’ with DeltaTime between 0.0 and 1.0.
Set it to 1.0 / Distance and you need to count DeltaTime all the way up to Distance to reach 'target.

If you want meter per second, you could either use an InterpSpeed of 1.0 / Distance / VelocityMetersPerSecond or use 1.0 / Distance and update DeltaTime by seconds * VelocityMetersPerSecond for an easier calculating of when ‘target’ will be reached.