|
@@ -159,6 +159,8 @@ namespace GFGGame
|
|
|
UpdateArrows();
|
|
|
UpdateSuitView();
|
|
|
}
|
|
|
+ UpdateSuitBoxStatus();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private void OnClickBtnRight()
|
|
@@ -171,6 +173,8 @@ namespace GFGGame
|
|
|
UpdateArrows();
|
|
|
UpdateSuitView();
|
|
|
}
|
|
|
+ UpdateSuitBoxStatus();
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private void UpdateSuitBoxStatus(EventContext eventContext = null)
|
|
@@ -178,6 +182,7 @@ namespace GFGGame
|
|
|
if (eventContext == null || _suitId == (int)eventContext.data)
|
|
|
{
|
|
|
int status = DressUpMenuSuitDataManager.GetSuitGuideBonusStatus(_suitId);
|
|
|
+ RedDotController.Instance.SetComRedDot(_ui.m_imgBonusBox.target, false);
|
|
|
RedDotController.Instance.SetComRedDot(_ui.m_imgBonusBox.target, status == ConstBonusStatus.CAN_GET);
|
|
|
|
|
|
if (status == ConstBonusStatus.CAN_GET)
|