31 lines
632 B
C#
31 lines
632 B
C#
|
/// Credit playemgames
|
||
|
/// Sourced from - http://forum.unity3d.com/threads/sprite-icons-with-text-e-g-emoticons.265927/
|
||
|
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.UI.Extensions;
|
||
|
|
||
|
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);
|
||
|
}
|
||
|
}
|