public static T GetAsset<T>() where T : AudioManagerAsset
T
The asset found as the type you want it. As long as its inheriting from AudioManagerAsset
Gets the asset of the type requested that inherits from AudioManagerAsset
private void OnEnable()
{
// Get the audio library asset.
var library = AssetAccessor.GetAsset<AudioLibrary>();
}