mirror of
https://github.com/ppy/osu.git
synced 2025-01-15 14:12:54 +08:00
Don't display in-game
Nothing does anything yet, so we can't display this. Make it functional before adding to game project.
This commit is contained in:
parent
af6f8bbd89
commit
958cd9f8d8
@ -44,7 +44,7 @@ namespace osu.Game.Screens.Play
|
||||
protected abstract HealthDisplay CreateHealthDisplay();
|
||||
protected abstract SongProgress CreateProgress();
|
||||
protected abstract ModDisplay CreateModsContainer();
|
||||
protected abstract ReplaySettingsOverlay CreateReplaySettingsOverlay();
|
||||
//protected abstract ReplaySettingsOverlay CreateReplaySettingsOverlay();
|
||||
|
||||
protected HUDOverlay()
|
||||
{
|
||||
@ -63,7 +63,7 @@ namespace osu.Game.Screens.Play
|
||||
HealthDisplay = CreateHealthDisplay(),
|
||||
Progress = CreateProgress(),
|
||||
ModDisplay = CreateModsContainer(),
|
||||
ReplaySettingsOverlay = CreateReplaySettingsOverlay(),
|
||||
//ReplaySettingsOverlay = CreateReplaySettingsOverlay(),
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -71,12 +71,12 @@ namespace osu.Game.Screens.Play
|
||||
Margin = new MarginPadding { Top = 20, Right = 10 },
|
||||
};
|
||||
|
||||
protected override ReplaySettingsOverlay CreateReplaySettingsOverlay() => new ReplaySettingsOverlay
|
||||
{
|
||||
Anchor = Anchor.TopRight,
|
||||
Origin = Anchor.TopRight,
|
||||
Margin = new MarginPadding { Top = 100, Right = 10 },
|
||||
};
|
||||
//protected override ReplaySettingsOverlay CreateReplaySettingsOverlay() => new ReplaySettingsOverlay
|
||||
//{
|
||||
// Anchor = Anchor.TopRight,
|
||||
// Origin = Anchor.TopRight,
|
||||
// Margin = new MarginPadding { Top = 100, Right = 10 },
|
||||
//};
|
||||
|
||||
[BackgroundDependencyLoader]
|
||||
private void load(OsuColour colours)
|
||||
|
Loading…
Reference in New Issue
Block a user