AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
AudioBank.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 using UnityEngine;
4 
5 namespace HoloToolkit.Unity
6 {
11  public abstract class AudioBank<T> : ScriptableObject
12  {
13  public T[] Events;
14  }
15 }
The audio bank contains a list of audio events that can be loaded into a UAudioManager for playback...
Definition: AudioBank.cs:11