This commit is contained in:
SoulliesOfficial
2025-07-20 13:39:29 -04:00
parent eeecba5a3e
commit bbb8057b08
54 changed files with 146600 additions and 123039 deletions

View File

@@ -51,17 +51,19 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
public override void Recover()
{
effectPartList.ForEach(effectPart =>
foreach (GameObject part in notePartList)
{
effectPart.GetComponent<ParticleSystem>().Stop();
});
foreach (Renderer renderer in notePartList.Select(part => part.GetComponent<Renderer>()))
{
renderer.material.SetFloat("_MainAlpha", 1f);
Renderer rend = part.GetComponent<Renderer>();
if (rend != null)
{
rend.material.SetFloat("_MainAlpha", 1f);
}
}
noteMain.transform.localScale = Vector3.zero;
foreach (EffectBase effect in effectSubmodule.effectCollection["Generate"])
{
effect.Recover();
}
}
}