Add better screen hierarchy and placeholder for dev build disclaimer.

This commit is contained in:
Dean Herbert
2017-02-17 20:07:11 +09:00
parent e6ef9f67aa
commit fe3a6248ec
7 changed files with 95 additions and 14 deletions

View File

@ -0,0 +1,38 @@
// 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 System.Linq;
using System.Text;
using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Framework.Screens;
namespace osu.Game.Screens.Menu
{
class Disclaimer : OsuScreen
{
private Intro intro;
internal override bool ShowOverlays => false;
[BackgroundDependencyLoader]
private void load(OsuGame game)
{
(intro = new Intro()).Preload(game);
}
protected override void OnEntering(Screen last)
{
base.OnEntering(last);
FadeInFromZero(100);
Delay(5000);
FadeOut(100);
Push(intro);
}
}
}

View File

@ -28,7 +28,7 @@ namespace osu.Game.Screens.Menu
private AudioSample seeya;
private AudioTrack bgm;
internal override bool ShowOverlays => (ParentScreen as OsuScreen)?.ShowOverlays ?? false;
internal override bool ShowOverlays => false;
protected override BackgroundScreen CreateBackground() => new BackgroundScreenEmpty();