1111 Signed-off-by: TRAfoer <lhf190@outlook.com>

Signed-off-by: TRAfoer <lhf190@outlook.com>
This commit is contained in:
2025-12-07 14:34:41 +08:00
parent d0d373a948
commit 1bbb1c51ab
26 changed files with 142116 additions and 2349 deletions

View File

@@ -14,6 +14,7 @@ namespace Ichni.RhythmGame
{
pendingNotes.Add((note, activationTime, finishTime));
AllNotesRegistered();
print($"Registered note {note.elementName} with activation time {activationTime} and finish time {finishTime}");
}
// 在所有物体注册完毕后,对列表进行一次排序
@@ -39,6 +40,8 @@ namespace Ichni.RhythmGame
if (shouldBeActive && !isActive)
{
note.gameObject.SetActive(true);
note.Update();
if (!note.isFirstJudged) note.noteVisual?.Recover();
}
else if (!shouldBeActive && isActive)
{