mirror of
https://github.com/ppy/osu.git
synced 2025-02-20 18:43:04 +08:00
Fix explosion reading out time values from wrong clock
This commit is contained in:
parent
427a88940c
commit
98ce69d1d3
@ -34,7 +34,18 @@ namespace osu.Game.Rulesets.Catch.UI
|
||||
protected override void OnApply(HitExplosionEntry entry)
|
||||
{
|
||||
base.OnApply(entry);
|
||||
if (IsLoaded)
|
||||
apply(entry);
|
||||
}
|
||||
|
||||
protected override void LoadComplete()
|
||||
{
|
||||
base.LoadComplete();
|
||||
apply(Entry);
|
||||
}
|
||||
|
||||
private void apply(HitExplosionEntry entry)
|
||||
{
|
||||
ApplyTransformsAt(double.MinValue, true);
|
||||
ClearTransforms(true);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user