新手引导不跳转

This commit is contained in:
xiaohui.wang 2022-04-01 20:40:46 +08:00
parent 4b68ca5f36
commit 6f3904eb04
1 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,11 @@ public class Shopping : MonoBehaviour
itemView.jumpPurchase = () =>
{
ShopItemPurchaseView.ShowDialog((shopData, GetItemAmount(shopData)), amount =>
if (isTutorial)
{
return;
}
ShopItemPurchaseView.ShowDialog((shopData, GetItemAmount(shopData)), amount =>
{
// アイテムを増やす
AddItem(shopData, amount);