River Jiang
2020-10-27 79e652bedf62f0842f59a2323f139f2e90efe819
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()
    {
    }
}
}