River Jiang
2020-10-27 24f59b89e9eabcfe948fc0ba304a8dbec2deda14
Assets/Scripts/TowerDefense/Level/EndlessWaveLineManager.cs
@@ -115,13 +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);
    }
}