Move load() to below ctor()

This commit is contained in:
smoogipoo 2019-10-16 21:41:18 +09:00
parent 388b71cf64
commit 4ac2e1c58e
1 changed files with 7 additions and 7 deletions

View File

@ -94,13 +94,6 @@ public DrawableSlider(Slider s)
}
}
protected override void UpdateInitialTransforms()
{
base.UpdateInitialTransforms();
Body.FadeInFromZero(HitObject.TimeFadeIn);
}
[BackgroundDependencyLoader]
private void load()
{
@ -129,6 +122,13 @@ private void load()
}, true);
}
protected override void UpdateInitialTransforms()
{
base.UpdateInitialTransforms();
Body.FadeInFromZero(HitObject.TimeFadeIn);
}
public readonly Bindable<bool> Tracking = new Bindable<bool>();
protected override void Update()