|
@@ -75,17 +75,9 @@ namespace GFGGame
|
|
|
ChatData chatData = ChatDataManager.Instance.ChatDatas[ChatType.League][index];
|
|
|
OtherRoleInfoData roleInfo = chatData.RoleInfo;
|
|
|
UI_ListChatItem item = UI_ListChatItem.Proxy(obj);
|
|
|
-
|
|
|
RoleInfoManager.Instance.UpdateHeadWithLv(item.m_comHead, roleInfo.headId, roleInfo.headBorderId, roleInfo.roleLv);
|
|
|
item.m_txtName.text = roleInfo.roleName;
|
|
|
- string content = "";
|
|
|
- for (int i = 0; i < chatData.Content.Length; i++)
|
|
|
- {
|
|
|
- string str = i == 12 * (i + 1) ? chatData.Content[i] + "/n" : chatData.Content[i].ToString();
|
|
|
- content += str;
|
|
|
- }
|
|
|
item.m_txtChatContent.text = chatData.Content;
|
|
|
-
|
|
|
UI_ListChatItem.ProxyEnd();
|
|
|
}
|
|
|
private async void OnBtnSendClick()
|