From 249ded3d1fb13d56f89873b63201b8f9b6b02cc5 Mon Sep 17 00:00:00 2001 From: ontrigger Date: Wed, 27 Sep 2023 22:12:21 +0300 Subject: [PATCH] fix incorrect link --- Source/Engine/UI/GUI/Panels/ScrollBar.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Engine/UI/GUI/Panels/ScrollBar.cs b/Source/Engine/UI/GUI/Panels/ScrollBar.cs index db47976a8..abde37b37 100644 --- a/Source/Engine/UI/GUI/Panels/ScrollBar.cs +++ b/Source/Engine/UI/GUI/Panels/ScrollBar.cs @@ -325,7 +325,7 @@ namespace FlaxEngine.GUI var progress = _scrollAnimationProgress; progress = Mathf.Clamp(progress + step, 0, 1); - // https://easings.net/#easeInOutQuad + // https://easings.net/#easeOutSine var easedProgress = Mathf.Sin((progress * Mathf.Pi) / 2); value = Mathf.Lerp(_startValue, _targetValue, easedProgress);