This commit is contained in:
SoulliesOfficial
2025-09-19 23:39:23 -04:00
parent f612d5bcd4
commit a9bc898e4c
130 changed files with 227554 additions and 24284 deletions

View File

@@ -21,6 +21,11 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
public override void Recover()
{
noteVisual.noteMain.SetActive(true);
if (note is Hold && noteVisual.isHighlighted)
{
noteVisual.extraPartList[0].gameObject.SetActive(true);
}
}
public override void Adjust()
@@ -28,6 +33,12 @@ namespace Ichni.RhythmGame.ThemeBundles.DepartureToMultiverse
effectParticle = LeanPool.Spawn(noteVisual.effectPrefabList[1], noteVisual.judgeEffect.transform).GetComponent<ParticleSystem>();
effectParticle.transform.SetParent(EditorManager.instance.cameraManager.gameCamera.transform);
effectParticle.Play();
if (note is Hold && noteVisual.isHighlighted)
{
noteVisual.extraPartList[0].gameObject.SetActive(false);
}
noteVisual.noteMain.SetActive(false);
LeanPool.Despawn(effectParticle.gameObject, 1);
}