Revert "clamp value of all easings by default"

This reverts commit 1aada98393.
Breaks the API.
This commit is contained in:
goat 2024-12-30 13:59:59 +01:00
parent 0cac90b032
commit b36bdb2086
17 changed files with 35 additions and 41 deletions

View file

@ -19,6 +19,6 @@ public class InOutCubic : Easing
public override void Update()
{
var p = this.Progress;
this.ValueUnclamped = p < 0.5 ? 4 * p * p * p : 1 - (Math.Pow((-2 * p) + 2, 3) / 2);
this.Value = p < 0.5 ? 4 * p * p * p : 1 - (Math.Pow((-2 * p) + 2, 3) / 2);
}
}