mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 17:37:23 +09:00
Move child drawable creation of CatchPlayfield
from constructor to load
.
This commit is contained in:
parent
879467961f
commit
7201cfe0b4
@ -16,6 +16,8 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
{
|
{
|
||||||
public class CatchPlayfield : ScrollingPlayfield
|
public class CatchPlayfield : ScrollingPlayfield
|
||||||
{
|
{
|
||||||
|
private readonly BeatmapDifficulty difficulty;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The width of the playfield.
|
/// The width of the playfield.
|
||||||
/// The horizontal movement of the catcher is confined in the area of this width.
|
/// The horizontal movement of the catcher is confined in the area of this width.
|
||||||
@ -31,11 +33,17 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
// only check the X position; handle all vertical space.
|
// only check the X position; handle all vertical space.
|
||||||
base.ReceivePositionalInputAt(new Vector2(screenSpacePos.X, ScreenSpaceDrawQuad.Centre.Y));
|
base.ReceivePositionalInputAt(new Vector2(screenSpacePos.X, ScreenSpaceDrawQuad.Centre.Y));
|
||||||
|
|
||||||
internal readonly Catcher Catcher;
|
internal Catcher Catcher { get; private set; }
|
||||||
|
|
||||||
internal readonly CatcherArea CatcherArea;
|
internal CatcherArea CatcherArea { get; private set; }
|
||||||
|
|
||||||
public CatchPlayfield(BeatmapDifficulty difficulty)
|
public CatchPlayfield(BeatmapDifficulty difficulty)
|
||||||
|
{
|
||||||
|
this.difficulty = difficulty;
|
||||||
|
}
|
||||||
|
|
||||||
|
[BackgroundDependencyLoader]
|
||||||
|
private void load()
|
||||||
{
|
{
|
||||||
var trailContainer = new Container
|
var trailContainer = new Container
|
||||||
{
|
{
|
||||||
@ -49,7 +57,7 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
X = CENTER_X
|
X = CENTER_X
|
||||||
};
|
};
|
||||||
|
|
||||||
InternalChildren = new[]
|
AddRangeInternal(new[]
|
||||||
{
|
{
|
||||||
droppedObjectContainer,
|
droppedObjectContainer,
|
||||||
Catcher.CreateProxiedContent(),
|
Catcher.CreateProxiedContent(),
|
||||||
@ -64,12 +72,8 @@ namespace osu.Game.Rulesets.Catch.UI
|
|||||||
},
|
},
|
||||||
trailContainer,
|
trailContainer,
|
||||||
HitObjectContainer,
|
HitObjectContainer,
|
||||||
};
|
});
|
||||||
}
|
|
||||||
|
|
||||||
[BackgroundDependencyLoader]
|
|
||||||
private void load()
|
|
||||||
{
|
|
||||||
RegisterPool<Droplet, DrawableDroplet>(50);
|
RegisterPool<Droplet, DrawableDroplet>(50);
|
||||||
RegisterPool<TinyDroplet, DrawableTinyDroplet>(50);
|
RegisterPool<TinyDroplet, DrawableTinyDroplet>(50);
|
||||||
RegisterPool<Fruit, DrawableFruit>(100);
|
RegisterPool<Fruit, DrawableFruit>(100);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user