Files
bansonic_beta_main/Assets/scripts/selectYourSongFirst/UI_SelectSong_AutoPlayToggleBinder.cs
2026-06-30 21:21:30 +08:00

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.
}
}