Hi I create a chat.
I need support Encoding smilies.

Is there such a possibility in NGUI UIInput?

protected void Init ()
{
if (mDoInit && label != null)
{
mDoInit = false;
mDefaultText = label.text;
mDefaultColor = label.color;
label.supportEncoding = false; if (label.alignment == NGUIText.Alignment.Justified)
{
label.alignment = NGUIText.Alignment.Left;
Debug.LogWarning("Input fields using labels with justified alignment are not supported at this time", this);
}
mPivot = label.pivot;
mPosition = label.cachedTransform.localPosition.x;
UpdateLabel();
//label.text.Length
}
}