1
This commit is contained in:
@@ -38,7 +38,7 @@ namespace Ichni
|
||||
public Canvas judgeHintCanvas;
|
||||
public GameUIController gameUIController;
|
||||
|
||||
public float songTime => audioManager.musicPlayer.songTimeSegment;
|
||||
public float songTime => audioManager.songPlayer.songTimeSegment;
|
||||
|
||||
public bool isDebugging;
|
||||
|
||||
|
||||
@@ -33,7 +33,7 @@ namespace Ichni
|
||||
|
||||
public void Update()
|
||||
{
|
||||
if (!GameManager.instance.audioManager.musicPlayer.isPlaying)
|
||||
if (!GameManager.instance.audioManager.songPlayer.isPlaying)
|
||||
{
|
||||
return;
|
||||
}
|
||||
@@ -146,7 +146,7 @@ namespace Ichni
|
||||
|
||||
private void LateUpdate()
|
||||
{
|
||||
if (!GameManager.instance.audioManager.musicPlayer.isPlaying)
|
||||
if (!GameManager.instance.audioManager.songPlayer.isPlaying)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -40,7 +40,7 @@ namespace Ichni
|
||||
(GameManager.instance.beatmapContainer.matchedBM as BeatmapContainer_BM).remainingElementAmount.Value == 0)
|
||||
.First().Subscribe(_ =>
|
||||
{
|
||||
GameManager.instance.audioManager.musicPlayer.PlayMusic();
|
||||
GameManager.instance.audioManager.songPlayer.PlaySong();
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user