hch
2025-11-13 c6ea64fb4e4755c4290bf5228d8cd463bc81c21f
Main/Component/UI/Common/LongPressButton.cs
@@ -75,6 +75,13 @@
    {
        if (m_IsButtonDown)
        {
            if (!this.interactable || !this.IsActive() || !this.enabled)
            {
                // 如果按钮不可用,则取消长按状态
                m_IsButtonDown = false;
                m_LongPress = false;
                return;
            }
            m_PressTime += Time.deltaTime;
            if (m_PressTime < m_LongPressCheckTime)
            {