mirror of
https://github.com/osukey/osukey.git
synced 2025-06-05 21:07:18 +09: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)
|
protected override void OnApply(HitExplosionEntry entry)
|
||||||
{
|
{
|
||||||
base.OnApply(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);
|
ApplyTransformsAt(double.MinValue, true);
|
||||||
ClearTransforms(true);
|
ClearTransforms(true);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user