Swap order: Shose -> Ping(Phase1) -> ChanraoTuibu -> Ping(Phase2). Final voice is on ChanraoTuibu complete

This commit is contained in:
yangbear
2026-07-11 05:52:25 +08:00
parent 9482410bdf
commit 5428b5d8f0
2 changed files with 9 additions and 15 deletions
+1 -7
View File
@@ -85,17 +85,11 @@ public static class ActionHistory
var h = item.Handler as ShoseClickHandler;
if (h != null) h.ResetState();
}
else if (item.Type == ActionType.ChanraoTuibu)
{
var h = item.Handler as ChanraoTuibuHandler;
if (h != null) h.ResetState();
}
else if (item.Type == ActionType.Woman)
{
var sm = Object.FindObjectOfType<StepManager>();
if (sm != null) sm.DecrementWomanStep();
// 隐藏下一个小球并恢复当前小球
var h = item.Handler as TouchPositionHandler;
if (h != null)
{
@@ -108,4 +102,4 @@ public static class ActionHistory
return true;
}
}
}