SongChartVisualizer
SongChartVisualizer copied to clipboard
difficulty peak warning text is too verbose
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.