-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Labels
enhancementNew feature or requestNew feature or request
Description
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.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request