I tried multiplying DeltaTime with 2[InterpSpeed] in FMath::Lerp() function and the results were very similar to FMath::FInterpTo()
is it true that FMath::Lerp() performs same as FMath::FInterpTo() if we multiply the interpolation or last paramerter of FMath::Lerp() with DeltaTime ?
but the value never actually reached equals to TargetYaw in either FMath::Lerp() or FMath::FInterpTo() so when to use which method if we are getting same result (as far as I know by now) in FMath::Lerp() and FMath::FInterpTo()
and also when to use FMath::FInterpConstantTo() [while using it the value actually reached to TargetYaw]
-> which one to use FMath::Lerp() or FMath::FInterpTo() when we getting same result when multiplied with DeltaTime with InterpSpeed in FMath::Lerp()
-> When to use FMath::FInterpConstantTo() ?