Exemplo n.º 1
0
    public void OnSubmit()
    {
        mInput.RemoveFocus();

        string text = NGUIText.StripSymbols(mInput.value);

        if (!string.IsNullOrEmpty(text))
        {
            ChatModule module = ModuleManager.Instance.FindModule <ChatModule>();
            module.SendText(mCurChannel, text);
            mInput.value = "";
        }
    }