remove logging

This commit is contained in:
ontrigger
2023-09-25 23:35:52 +03:00
parent 6a62dac49b
commit a18d2d0eba

View File

@@ -349,8 +349,6 @@ namespace FlaxEngine.GUI
var progress = _scrollAnimationProgress;
progress = Mathf.Clamp(progress + step, 0, 1);
Debug.Log($"why {progress} {step} {minScrollChangeRatio}");
// https://easings.net/#easeInOutQuad
var easedProgress = Mathf.Sin((progress * Mathf.Pi) / 2);
value = Mathf.Lerp(_startValue, _targetValue, easedProgress);