From 4f262836658e3c3803fbd8787aa3233369bab34e Mon Sep 17 00:00:00 2001 From: Carson Kompon Date: Sun, 27 Feb 2022 13:54:46 -0500 Subject: [PATCH] Make length of bgcolor event match rhythm tweezers --- 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 0a7180e93..5e07a7ffa 100644 --- a/Assets/Scripts/Minigames.cs +++ b/Assets/Scripts/Minigames.cs @@ -254,7 +254,7 @@ namespace RhythmHeavenMania var c = KarateMan.instance.BackgroundColors[e.type]; if(e.type == (int)KarateMan.BackgroundType.Custom) c = e.colorA; KarateMan.instance.SetBackgroundColor(e.type, e.type2, c, e.colorB); - }, 1f, false, new List() + }, 0.5f, false, new List() { new Param("type", KarateMan.BackgroundType.Yellow, "Background Type"), new Param("type2", KarateMan.ShadowType.Tinted, "Shadow Type"),