Merged in playemgames/unity-ui-extensions/playemgames/added-onvalidate-and-updatequadimage-to--1469821382746 (pull request #25)

Added OnValidate and UpdateQuadImage(); to OnPopulateMesh(); to position the images correctly on text input.

--HG--
branch : develop_5.3
release
Simon Jackson 2016-07-30 00:44:06 +01:00
commit 2f6aca2d4c
1 changed files with 10 additions and 1 deletions

View File

@ -39,6 +39,14 @@ namespace UnityEngine.UI.Extensions
UpdateQuadImage();
}
#if UNITY_EDITOR
protected override void OnValidate()
{
base.OnValidate();
UpdateQuadImage();
}
#endif
/// <summary>
/// After parsing the final text
/// </summary>
@ -81,7 +89,7 @@ namespace UnityEngine.UI.Extensions
{
foreach (IconName icon in inspectorIconList)
{
Debug.Log(icon.sprite.name);
// Debug.Log(icon.sprite.name);
iconList.Add(icon.name, icon.sprite);
}
}
@ -229,6 +237,7 @@ namespace UnityEngine.UI.Extensions
}
hrefInfo.boxes.Add(new Rect(bounds.min, bounds.size));
}
UpdateQuadImage();
}
/// <summary>