|
@@ -488,7 +488,7 @@ namespace GFGGame
|
|
|
if (GuideDataManager.IsGuideFinish(ConstGuideId.START_FIGHT) <= 0 && !ViewManager.isViewOpen(typeof(GuideView).FullName)) return;
|
|
|
Timers.inst.Add(0.1f, 0, ComAllCirclePressTime);
|
|
|
|
|
|
- _effectUI15.GetObj().GetComponent<Animator>().SetBool("player", true);
|
|
|
+
|
|
|
}
|
|
|
private void ComAllCirclePressTime(object param = null)
|
|
|
{
|
|
@@ -511,11 +511,13 @@ namespace GFGGame
|
|
|
//_ui.m_comClick.m_comAllPerfect.m_txtCount.text = allCircleScore.ToString();
|
|
|
CheckNumImage(allCircleScore.ToString());
|
|
|
_ui.m_comClick.m_comResult.target.visible = false;
|
|
|
-
|
|
|
+ _ui.m_comClick.m_comAllPerfect.m_t2.SetHook("animation", SetAnimation);
|
|
|
+
|
|
|
_time = 0;
|
|
|
_score += allCircleScore;
|
|
|
_ui.m_comClick.m_comAllPerfect.m_t2.Play(() =>
|
|
|
{
|
|
|
+ _effectUI15.GetObj().GetComponent<Animator>().SetBool("player", false);
|
|
|
_prefectCount = 0;
|
|
|
TryShowCardSkill(null);
|
|
|
});
|
|
@@ -526,6 +528,10 @@ namespace GFGGame
|
|
|
GuideController.TryCompleteGuide(ConstGuideId.START_FIGHT, 10);
|
|
|
}
|
|
|
}
|
|
|
+ private void SetAnimation()
|
|
|
+ {
|
|
|
+ _effectUI15.GetObj().GetComponent<Animator>().SetBool("player", true);
|
|
|
+ }
|
|
|
|
|
|
private bool SuitAddScore()
|
|
|
{
|