// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. namespace Microsoft.MixedReality.Toolkit.UI { /// /// Render style for MRTK buttons. /// public enum ButtonIconStyle { /// /// Renders using a material on a quad. Icon texture is set using a MaterialPropertyBlock. /// Quad, /// /// Renders using a sprite renderer. Icon texture is set by changing the sprite. /// Sprite, /// /// Renders using TextMeshPro. Icon texture is set by changing the character. /// Char, /// /// Hides the icons. /// None, } }