오늘의 메뉴 키보드로 제거할 때, 애니메이션 오류 수정

This commit is contained in:
NTG 2025-09-01 17:19:49 +09:00
parent e018efe9a4
commit 1b039ea8c8

View File

@ -269,6 +269,13 @@ public void OnSubmit(BaseEventData eventData)
public void SetInteractable(bool interactable)
{
_button.interactable = interactable;
if (interactable == false)
{
_isHighlighted = false;
_isPressed = false;
_isSelected = false;
_isToggled = false;
}
UpdateVisualState();
}