AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
ICycle.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 UnityEngine;
5 using System.Collections;
6 
7 namespace HoloToolkit.Examples.Prototyping
8 {
13  public interface ICycle
14  {
15  int Index { get; set; }
16 
22  void SetIndex(int index);
23 
27  void MoveNext();
28 
32  void MovePrevious();
33 
38  int GetLastIndex();
39  }
40 }
An interface for components that cycle through an array of properties. A component can be built to cy...
Definition: ICycle.cs:13