mirror of
https://github.com/ppy/osu.git
synced 2025-02-23 03:43:00 +08:00
Closes https://github.com/ppy/osu/issues/28791. The reason why nudging was not changing hyperdash state in catch was that `EditorBeatmap.Update()` was not being called on the objects that were being modified, therefore postprocessing was not performed, therefore hyperdash state was not being recomputed. Looking at the usage sites of `EditorBeatmap.PerformOnSelection()`, about two-thirds of callers called `Update()` themselves on the objects they mutated, and the rest didn't. I'd say that's the failure of the abstraction and it should be `PerformOnSelection()`'s responsibility to call `Update()` there. Yes in some of the cases here this will cause extraneous calls that weren't done before, but the method is already heavily disclaimed as 'expensive', so I'd say usability should come first. |
||
---|---|---|
.. | ||
Beatmaps | ||
Configuration | ||
Difficulty | ||
Edit | ||
Judgements | ||
Mods | ||
Objects | ||
Properties | ||
Replays | ||
Resources | ||
Scoring | ||
Skinning | ||
UI | ||
osu.Game.Rulesets.Taiko.csproj | ||
TaikoInputManager.cs | ||
TaikoRuleset.cs | ||
TaikoSettingsSubsection.cs | ||
TaikoSkinComponentLookup.cs | ||
TaikoSkinComponents.cs |