From 473f7645e6975ae84b31b94e6fa5ae29d35b24c4 Mon Sep 17 00:00:00 2001 From: zhangaotian <8474238@qq.com> Date: Tue, 25 Jun 2024 18:45:12 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90=E5=86=85=E8=B4=AD=E3=80=91=E5=95=86?= =?UTF-8?q?=E5=93=81=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs b/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs index 6eff16b..01b2f16 100644 --- a/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs +++ b/Forest/Assets/Scripts/Gameplay/UI/Shop/UIMainShopController.cs @@ -28,19 +28,19 @@ public class UIMainShopController : UIWindow { _biEventFirst = EventFirst.fte_buy_coin_small; _biEvent = Event.click_buy_coin_small; - ShopToBuy(platform + "_pack_coins_100"); + ShopToBuy(platform + "_CoinBox_100"); }); BindButton("MainShop/CoinsList/Viewport/Content/CoinMediumPack/Btn_Buy", () => { _biEventFirst = EventFirst.fte_buy_coin_medium; _biEvent = Event.click_buy_coin_medium; - ShopToBuy(platform + "_pack_coins_600"); + ShopToBuy(platform + "_CoinBox_600"); }); BindButton("MainShop/CoinsList/Viewport/Content/CoinLargePack/Btn_Buy", () => { _biEventFirst = EventFirst.fte_buy_coin_large; _biEvent = Event.click_buy_coin_large; - ShopToBuy(platform + "_pack_coins_1200"); + ShopToBuy(platform + "_CoinBox_1200"); }); }