SongChartVisualizer icon indicating copy to clipboard operation
SongChartVisualizer copied to clipboard

difficulty peak warning text is too verbose

Open telos00 opened this issue 4 years ago • 0 comments

if (PluginConfig.Instance.PeakWarning && _canvas && _canvas.enabled)
                    _text.text = $"You're about to reach the peak difficulty in <color=#ffa500ff>{_currentSection.toTime - _audioTimeSyncController.songTime:F1}</color> seconds!";

Can just be

if (PluginConfig.Instance.PeakWarning && _canvas && _canvas.enabled)
                    _text.text = $"Peak difficulty in <color=#ffa500ff>{_currentSection.toTime - _audioTimeSyncController.songTime:F1}</color>";
            }

it's less verbose and easier to read while in the heat of gameplay.

telos00 avatar Jun 22 '20 08:06 telos00