整合SLSUtilities
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using AK.Wwise;
|
||||
using SLSFramework.General;
|
||||
|
||||
namespace SLSFramework.WwiseAssistance
|
||||
{
|
||||
public class AudioManager : Singleton<AudioManager>
|
||||
{
|
||||
public GameObject audioPoint;
|
||||
public List<Bank> soundBanks;
|
||||
|
||||
public BackgroundMusicManager backgroundMusicManager;
|
||||
public AudioContainer generalSoundEffects;
|
||||
|
||||
protected override void Awake()
|
||||
{
|
||||
base.Awake();
|
||||
soundBanks.ForEach(bank => bank.Load());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user