From e0893a203d75f64db5f2146e314964da588994ac Mon Sep 17 00:00:00 2001 From: wookywok <62037083+wookywok@users.noreply.github.com> Date: Tue, 9 Apr 2024 09:47:19 -0500 Subject: [PATCH] Fixed the parameters for Gaussian Blur, whoopsies (#853) * changed cues, added legacy support * Added Legacy Scroll Speed * Fix gaussian blue parameters, whoopsies --- Assets/Scripts/Minigames.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Minigames.cs b/Assets/Scripts/Minigames.cs index d77eda3fd..6d86c40d7 100644 --- a/Assets/Scripts/Minigames.cs +++ b/Assets/Scripts/Minigames.cs @@ -1169,7 +1169,7 @@ namespace HeavenStudio new("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.", new() { - new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Linear, new string[] { "intenStart" }) + new((x, y) => (Util.EasingFunction.Ease)x != Util.EasingFunction.Ease.Instant, new string[] { "intenStart" }) }), } },