From 406f6a54b2bd8ec38eef9c25bbadf9ecde9c2e6d Mon Sep 17 00:00:00 2001 From: Carson Kompon Date: Sat, 26 Feb 2022 14:06:52 -0500 Subject: [PATCH] Reset Song when pressing "New" Song was not removed prior to this --- Assets/Scripts/GameManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/Scripts/GameManager.cs b/Assets/Scripts/GameManager.cs index de6aa917..e0ab92b9 100644 --- a/Assets/Scripts/GameManager.cs +++ b/Assets/Scripts/GameManager.cs @@ -109,6 +109,7 @@ namespace RhythmHeavenMania Beatmap = new Beatmap(); Beatmap.bpm = 120f; Beatmap.firstBeatOffset = 0f; + Conductor.instance.musicSource.clip = null; } public void LoadRemix(string json = "")