This commit is contained in:
SoulliesOfficial
2025-08-27 21:45:18 -04:00
parent 131b182f43
commit 4031b29245
266 changed files with 26272 additions and 18257 deletions

View File

@@ -7,10 +7,14 @@ namespace Ichni.Menu
{
public class SoundBankInitializer : MonoBehaviour
{
public bool initialized = false;
public List<Bank> soundBanks;
private void Awake()
{
if (initialized) return;
initialized = true;
soundBanks.ForEach(bank => bank.Load());
Debug.Log("AudioManager initialized with " + soundBanks.Count + " sound banks loaded.");
}