13 lines
393 B
C#
13 lines
393 B
C#
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
public static class UI_SelectSong_AutoPlayToggleBinder
|
|
{
|
|
[RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
|
|
private static void Init()
|
|
{
|
|
// Legacy autoplay binding has been retired.
|
|
// selectYourSongFirst now uses selected_songInfo.autoplayButton as the single source of truth.
|
|
}
|
|
}
|