AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
AudioEventBank.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 {
10  [CreateAssetMenu(fileName = "AudioEventBank")]
11  public class AudioEventBank : AudioBank<AudioEvent>
12  {
13  }
14 }
15 
Instance of an AudioBank that contains AudioEvents
The audio bank contains a list of audio events that can be loaded into a UAudioManager for playback...
Definition: AudioBank.cs:11