AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
AudioClip.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 
4 using System;
5 
6 namespace HoloToolkit.Unity
7 {
11  [Serializable]
12  public class UAudioClip
13  {
14  public UnityEngine.AudioClip Sound = null;
15  public bool Looping = false;
16 
17  public float DelayCenter = 0;
18  public float DelayRandomization = 0;
19  }
20 }
Encapsulate a single Unity AudioClip with playback settings.
Definition: AudioClip.cs:12