mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
a5e610a7ba
Most issues were related to BeginLoopedSequence usage and lack of "this." in front of transform helpers.
38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Screens.Backgrounds;
|
|
using osu.Game.Screens.Play;
|
|
using OpenTK.Graphics;
|
|
using osu.Game.Screens.Select;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Screens.Multiplayer
|
|
{
|
|
internal class Match : ScreenWhiteBox
|
|
{
|
|
protected override IEnumerable<Type> PossibleChildren => new[] {
|
|
typeof(MatchSongSelect),
|
|
typeof(Player),
|
|
};
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenCustom(@"Backgrounds/bg4");
|
|
|
|
protected override void OnEntering(Screen last)
|
|
{
|
|
base.OnEntering(last);
|
|
|
|
Background.FadeColour(Color4.DarkGray, 500);
|
|
}
|
|
|
|
protected override bool OnExiting(Screen next)
|
|
{
|
|
Background.FadeColour(Color4.White, 500);
|
|
return base.OnExiting(next);
|
|
}
|
|
}
|
|
}
|