キッチンチュートリアル3追加

This commit is contained in:
kimura 2021-10-26 18:18:27 +09:00
parent e13e506b9b
commit 1c582bdc4d
1 changed files with 11 additions and 0 deletions

View File

@ -84,6 +84,17 @@ public class KitchenManager : MonoBehaviour
}).AddTo(this); }).AddTo(this);
}); });
} }
else if (TutorialManager.Instance.Index > 7)
{
TutorialManager.Instance.ShowTutorialConversation(10, () =>
{
var go = FindObjectOfType<FooterManager>().transform;
go.transform.FindChildByName("Button_shop", t =>
{
TutorialManager.Instance.ShowTutorialMask(go.parent, t as RectTransform);
});
});
}
} }
CoinManager.Instance.ChangeCoin(gameData.Coin); CoinManager.Instance.ChangeCoin(gameData.Coin);