mixedreality/com.microsoft.mixedreality..../SDK/Features/UX/Scripts/Tooltips/IToolTipBackground.cs

14 lines
349 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
namespace Microsoft.MixedReality.Toolkit.UI
{
public interface IToolTipBackground
{
bool IsVisible { set; }
void OnContentChange(Vector3 localContentSize, Vector3 localContentOffset, Transform contentParentTransform);
}
}