lcy
2025-10-17 08d180d4dee2015a09e1be660cbbf35720fd78bc
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)
            {