This commit is contained in:
SoulliesOfficial
2025-08-22 14:54:40 -04:00
parent 6aa498f6be
commit 70b2a43824
574 changed files with 173713 additions and 1884 deletions

View File

@@ -25,6 +25,11 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
noteRenderers.Add(rend);
}
}
if (noteVisual is DTMNoteVisualHold)
{
this.effectTime *= 2f;
}
}
public override void Recover()
@@ -40,7 +45,9 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
public override void Execute()
{
float e = AnimationCurveEvaluator.Evaluate(AnimationCurveType.OutQuad, effectProgressPercent);
float alpha = (1 - e) / 4f;
float alpha = (1 - e) / 3f;
Debug.Log(alpha);
foreach (var renderer in noteRenderers)
{
renderer.material.SetFloat("_MainAlpha", alpha);