Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ internal void ResetCurrentState()
/// <param name="maxDeltaTime">The maximum time delta between the current and target value.</param>
/// <param name="lerp">Determines whether to use smooth dampening or lerp interpolation type.</param>
/// <returns>The newly interpolated value of type 'T'</returns>
internal T Update(float deltaTime, double tickLatencyAsTime, double minDeltaTime, double maxDeltaTime, bool lerp)
public T Update(float deltaTime, double tickLatencyAsTime, double minDeltaTime, double maxDeltaTime, bool lerp)
{
TryConsumeFromBuffer(tickLatencyAsTime, minDeltaTime, maxDeltaTime);
// Only begin interpolation when there is a start and end point
Expand Down