mirror of
https://github.com/osukey/osukey.git
synced 2025-08-07 00:23:59 +09:00
Remove unused parameter from createGameplayComponents()
No longer used since 136843c8e4
.
This commit is contained in:
@ -251,7 +251,7 @@ namespace osu.Game.Screens.Play
|
|||||||
{
|
{
|
||||||
// underlay and gameplay should have access to the skinning sources.
|
// underlay and gameplay should have access to the skinning sources.
|
||||||
createUnderlayComponents(),
|
createUnderlayComponents(),
|
||||||
createGameplayComponents(Beatmap.Value, playableBeatmap)
|
createGameplayComponents(Beatmap.Value)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
FailOverlay = new FailOverlay
|
FailOverlay = new FailOverlay
|
||||||
@ -364,7 +364,7 @@ namespace osu.Game.Screens.Play
|
|||||||
private Drawable createUnderlayComponents() =>
|
private Drawable createUnderlayComponents() =>
|
||||||
DimmableStoryboard = new DimmableStoryboard(Beatmap.Value.Storyboard) { RelativeSizeAxes = Axes.Both };
|
DimmableStoryboard = new DimmableStoryboard(Beatmap.Value.Storyboard) { RelativeSizeAxes = Axes.Both };
|
||||||
|
|
||||||
private Drawable createGameplayComponents(IWorkingBeatmap working, IBeatmap playableBeatmap) => new ScalingContainer(ScalingMode.Gameplay)
|
private Drawable createGameplayComponents(IWorkingBeatmap working) => new ScalingContainer(ScalingMode.Gameplay)
|
||||||
{
|
{
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user