27 lines
670 B
C#
27 lines
670 B
C#
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
using Microsoft.MixedReality.Toolkit.Utilities;
|
|
using UnityEngine;
|
|
|
|
namespace Microsoft.MixedReality.Toolkit.UI
|
|
{
|
|
/// <summary>
|
|
/// Renders an outline around tooltip background
|
|
/// </summary>
|
|
[AddComponentMenu("Scripts/MRTK/SDK/ToolTipLineHighlight")]
|
|
public class ToolTipLineHighlight : MonoBehaviour, IToolTipHighlight
|
|
{
|
|
public bool ShowHighlight
|
|
{
|
|
set
|
|
{
|
|
lineRenderer.enabled = value;
|
|
}
|
|
}
|
|
|
|
[SerializeField]
|
|
private BaseMixedRealityLineRenderer lineRenderer = null;
|
|
}
|
|
}
|