diff --git a/AxibugEmuOnline.Client/Assets/Scene/AxibugEmuOnline.Client.unity b/AxibugEmuOnline.Client/Assets/Scene/AxibugEmuOnline.Client.unity index 5f46b7d..8a63c68 100644 --- a/AxibugEmuOnline.Client/Assets/Scene/AxibugEmuOnline.Client.unity +++ b/AxibugEmuOnline.Client/Assets/Scene/AxibugEmuOnline.Client.unity @@ -16100,6 +16100,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 321727879374672331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -16178,7 +16202,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 736530578155193984, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_LocalPosition.x - value: 0 + value: -89.58333 objectReference: {fileID: 0} - target: {fileID: 935090267056593628, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_AnchorMax.y @@ -16770,7 +16794,7 @@ PrefabInstance: objectReference: {fileID: 0} - target: {fileID: 8801936766261209235, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_LocalPosition.x - value: 0 + value: -79.58333 objectReference: {fileID: 0} - target: {fileID: 9167054165049020263, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_LocalPosition.x diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/InGameUI/InGameUI.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/InGameUI/InGameUI.cs index 21a28f4..743ee71 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/InGameUI/InGameUI.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/InGameUI/InGameUI.cs @@ -93,7 +93,7 @@ namespace AxibugEmuOnline.Client Eventer.Instance.RegisterEvent(EEvent.OnLoginSucceed, OnLoggedIn); Eventer.Instance.RegisterEvent(EEvent.OnRoomWaitStepChange, OnServerStepUpdate); - Eventer.Instance.RegisterEvent(EEvent.OnMineJoinRoom, OnRoomJoin); + Eventer.Instance.RegisterEvent(EEvent.OnMineRoomCreated, OnRoomCreated); gameObject.SetActiveEx(true); @@ -108,7 +108,7 @@ namespace AxibugEmuOnline.Client } } - private void OnRoomJoin() + private void OnRoomCreated() { m_delayCreateRoom = false; } @@ -152,7 +152,7 @@ namespace AxibugEmuOnline.Client { Eventer.Instance.UnregisterEvent(EEvent.OnRoomWaitStepChange, OnServerStepUpdate); Eventer.Instance.UnregisterEvent(EEvent.OnLoginSucceed, OnLoggedIn); - Eventer.Instance.UnregisterEvent(EEvent.OnMineJoinRoom, OnRoomJoin); + Eventer.Instance.UnregisterEvent(EEvent.OnMineRoomCreated, OnRoomCreated); App.roomMgr.SendLeavnRoom(); App.emu.StopGame(); }