2019-03-04 04:24:19 +00:00
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-11-11 01:39:04 +00:00
|
|
|
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Tournament.Screens.TeamWin;
|
|
|
|
|
2019-06-18 06:28:36 +00:00
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
2018-11-11 01:39:04 +00:00
|
|
|
{
|
2020-06-24 07:57:17 +00:00
|
|
|
public class TestSceneTeamWinScreen : TournamentTestScene
|
2018-11-11 01:39:04 +00:00
|
|
|
{
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2020-06-24 08:57:07 +00:00
|
|
|
var match = Ladder.CurrentMatch.Value;
|
|
|
|
|
2019-06-18 05:57:05 +00:00
|
|
|
match.Round.Value = Ladder.Rounds.FirstOrDefault(g => g.Name.Value == "Finals");
|
2020-03-03 09:59:23 +00:00
|
|
|
match.Completed.Value = true;
|
2018-11-11 01:39:04 +00:00
|
|
|
|
|
|
|
Add(new TeamWinScreen
|
|
|
|
{
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
FillAspectRatio = 16 / 9f
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|