调整谱面开放
This commit is contained in:
@@ -88,24 +88,28 @@ namespace Ichni
|
||||
|
||||
private void LateUpdate()
|
||||
{
|
||||
if (!songPlayer.isUpdating) return;
|
||||
|
||||
trackManager.ManualLateUpdate(SongTime);
|
||||
noteManager.ManualLateUpdate(SongTime);
|
||||
|
||||
for(int i = 0; i < activeColorSubmodules.Count; i++)
|
||||
if (songPlayer.isUpdating)
|
||||
{
|
||||
activeColorSubmodules[i].UpdateColor(true);
|
||||
trackManager.ManualLateUpdate(SongTime);
|
||||
noteManager.ManualLateUpdate(SongTime);
|
||||
|
||||
for (int i = 0; i < activeColorSubmodules.Count; i++)
|
||||
{
|
||||
activeColorSubmodules[i].UpdateColor(true);
|
||||
}
|
||||
|
||||
for (int i = 0; i < activeTransformSubmodules.Count; i++)
|
||||
{
|
||||
activeTransformSubmodules[i].UpdateTransform(true);
|
||||
}
|
||||
}
|
||||
|
||||
for(int i = 0; i < activeTransformSubmodules.Count; i++)
|
||||
if (songPlayer.isStarting || songPlayer.isPlaying)
|
||||
{
|
||||
activeTransformSubmodules[i].UpdateTransform(true);
|
||||
}
|
||||
|
||||
for(int i = 0; i < activeDirtyMarkSubmodules.Count; i++)
|
||||
{
|
||||
activeDirtyMarkSubmodules[i]?.dirtyMarkSubmodule?.ExecuteDeferredRefresh();
|
||||
for (int i = 0; i < activeDirtyMarkSubmodules.Count; i++)
|
||||
{
|
||||
activeDirtyMarkSubmodules[i]?.dirtyMarkSubmodule?.ExecuteDeferredRefresh();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user