Assets/Scripts/TowerDefense/Level/EndlessWaveLineManager.cs
@@ -115,19 +115,7 @@ { if (pos >= waveLineList.Count || waveLineList[pos] == null) return; int subone = pos - 1; int addone = pos + 1; if (subone >= 0) WaveLineFlash(subone); // 无尽模式改为只有一条兵线 WaveLineFlash(pos); if (addone < waveLineList.Count) WaveLineFlash(addone); } // Update is called once per frame void Update() { } } }