From 33d5ce86967497eec9d31fa9ac372c1f632cc779 Mon Sep 17 00:00:00 2001 From: wangguan <wangguan@kt007.com> Date: Fri, 04 Dec 2020 18:05:15 +0800 Subject: [PATCH] 结束引导特效最后显示 新手获得精灵飞动特效 不显示PVP版本预告 --- Assets/Scripts/Guide/GuidePanelNew.cs | 13 +++++++++++-- 1 files changed, 11 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Guide/GuidePanelNew.cs b/Assets/Scripts/Guide/GuidePanelNew.cs index fc88ffd..3f45779 100644 --- a/Assets/Scripts/Guide/GuidePanelNew.cs +++ b/Assets/Scripts/Guide/GuidePanelNew.cs @@ -603,6 +603,7 @@ /// </summary> public void GuideEnergyUp() { + GameObject.Find("UICamera/MainUI/BloodUI").SetActive(false); EventCenter.Ins.BroadCast((int)KTGMGemClient.EventType.GuideEnergyUp, 100); tmpMask.enabled = false; @@ -619,15 +620,23 @@ public void SkillRelease(string[] str, Action ac) { + GameObject.Find("UICamera/MainUI/BloodUI").SetActive(true); + RemoveButtonListener(skillBtn.gameObject); SetRimActive(false); CloseGuidance(); SetGuideUI(true); - StartShowWord(str, ac); - finishPS.Play(); + //StartShowWord(str, ac); + + charForeach.StartFinalShowWord(str, ac, () => + { + finishPS.Play(); + }); + } + public void FinishGuide() { towerBuyBtn.gameObject.SetActive(true); -- Gitblit v1.9.1