Fix info text
							parent
							
								
									b38bf72e7f
								
							
						
					
					
						commit
						466933babe
					
				|  | @ -82,15 +82,17 @@ public class GameClient : MonoBehaviour | |||
|     public void OnPlayerEnterClick() | ||||
|     { | ||||
|         Debug.Log($"[GameClient]OnPlayerEnterClick"); | ||||
|         infoText.text = $"Request PlayerEnter {roomId}"; | ||||
|         roomId = roomIdInput.text; | ||||
|         nickName = nicknameInput.text; | ||||
|         infoText.text = $"Request PlayerEnter {roomId}, Nickname {nickName}"; | ||||
| 
 | ||||
|         var msg = new ClientMessage | ||||
|         { | ||||
|             PlayerEnter = new PlayerEnter | ||||
|             { | ||||
|                 RoomId = roomIdInput.text, | ||||
|                 RoomId = roomId, | ||||
|                 Uid = uid, | ||||
|                 NickName = nicknameInput.text, | ||||
|                 NickName = nickName, | ||||
|                 Country = "CN" | ||||
|             } | ||||
|         }; | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue