AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
LabelTheme.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.Collections;
5 using System.Collections.Generic;
6 using UnityEngine;
7 
8 namespace HoloToolkit.Examples.InteractiveElements
9 {
13  public class LabelTheme : MonoBehaviour
14  {
15  [Tooltip("Default label string")]
16  public string Default;
17  [Tooltip("selected label string")]
18  public string Selected;
19  }
20 }
A theme for handling the label string on the toggle button
Definition: LabelTheme.cs:13