From 17ee2eb3972c870728d8057425bcbbd46615d327 Mon Sep 17 00:00:00 2001 From: hch <305670599@qq.com> Date: 星期四, 09 十月 2025 20:00:35 +0800 Subject: [PATCH] 0312 不同的界面点击事件同步为同帧同弹起的逻辑处理 --- Main/Component/UI/Common/ClickScreenOtherSpace.cs | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/Main/Component/UI/Common/ClickScreenOtherSpace.cs b/Main/Component/UI/Common/ClickScreenOtherSpace.cs index 1f9b1a2..62bb4c0 100644 --- a/Main/Component/UI/Common/ClickScreenOtherSpace.cs +++ b/Main/Component/UI/Common/ClickScreenOtherSpace.cs @@ -57,6 +57,12 @@ m_ClickOtherEvent?.Invoke(); } break; + } + } + else if (Input.GetMouseButtonUp(0)) + { + switch (m_RespondType) + { case RespondType.InOut: this.SetActive(!m_DeActiveSelf); m_ClickOtherEvent?.Invoke(); -- Gitblit v1.8.0