Files
Studio/Assets/Scripts/ExternalAssets/com.unity.uiextensions/Examples/TextEffects/testHref.cs
2025-05-21 12:10:38 +09:00

30 lines
677 B
C#

/// Credit playemgames
/// Sourced from - http://forum.unity3d.com/threads/sprite-icons-with-text-e-g-emoticons.265927/
namespace UnityEngine.UI.Extensions.Examples
{
public class testHref : MonoBehaviour
{
public TextPic textPic;
void Awake()
{
textPic = GetComponent<TextPic>();
}
void OnEnable()
{
textPic.onHrefClick.AddListener(OnHrefClick);
}
void OnDisable()
{
textPic.onHrefClick.RemoveListener(OnHrefClick);
}
private void OnHrefClick(string hrefName)
{
Debug.Log("Click on the " + hrefName);
}
}
}