|
@@ -159,8 +159,19 @@ namespace GFGGame
|
|
|
protected override void UpdateToCheckGuide(object param)
|
|
|
{
|
|
|
if (!ViewManager.CheckIsTopView(this.viewCom)) return;
|
|
|
+ int index = 0;
|
|
|
+ for (int i = 0; i < _suitIds.Count; i++)
|
|
|
+ {
|
|
|
+ int suitId = _suitIds[i];
|
|
|
+ bool haveSuit = DressUpMenuSuitDataManager.CheckHaveSuit(suitId);
|
|
|
+ if (haveSuit == true)
|
|
|
+ {
|
|
|
+ index = i;
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
- GuideController.TryGuide(_ui.m_listSuit, ConstGuideId.SUIT_LIST_VIEW, 3, "选择套装", 0);
|
|
|
+ GuideController.TryGuide(_ui.m_listSuit, ConstGuideId.SUIT_LIST_VIEW, 3, "选择套装", index);
|
|
|
}
|
|
|
}
|
|
|
}
|