yyl
2026-03-31 0fa617a09eedf6bdb25eda55fac1d3344859fd93
Main/System/Store/SkinStoreCell.cs
@@ -1,4 +1,5 @@
using System.Collections.Generic;
using Cysharp.Threading.Tasks;
using UnityEngine;
using UnityEngine.UI;
@@ -60,13 +61,13 @@
        {
            HeroUIManager.Instance.selectForPreviewHeroID = heroID;
            HeroUIManager.Instance.selectSkinIndex = HeroDebutManager.Instance.GetSkinIndexInHeroConfig(heroID, skinID);
            UIManager.Instance.OpenWindow<HeroBestBaseWin>(1);
            UIManager.Instance.OpenWindowAsync<HeroBestBaseWin>(1).Forget();
        });
    }
    void BuyGoods(int shopID)
    {
        StoreModel.Instance.buyShopID = shopID;
        UIManager.Instance.OpenWindow<SkinStoreBuyTipWin>();
        UIManager.Instance.OpenWindowAsync<SkinStoreBuyTipWin>().Forget();
    }
}