mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 21:47:25 +08:00
b8b05fe8d2
There should only ever be one osu! logo. It is now passed around between screens in a superfluous manner.
42 lines
1.1 KiB
C#
42 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 osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Screens.Menu;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Screens
|
|
{
|
|
internal class Loader : OsuScreen
|
|
{
|
|
public override bool ShowOverlays => false;
|
|
|
|
public Loader()
|
|
{
|
|
ValidForResume = false;
|
|
}
|
|
|
|
protected override void LogoSetup(OsuLogo logo, bool resuming)
|
|
{
|
|
base.LogoSetup(logo, resuming);
|
|
|
|
logo.RelativePositionAxes = Axes.Both;
|
|
logo.Triangles = false;
|
|
logo.Position = new Vector2(0.9f);
|
|
logo.Scale = new Vector2(0.2f);
|
|
|
|
logo.FadeInFromZero(5000, Easing.OutQuint);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuGame game)
|
|
{
|
|
if (game.IsDeployedBuild)
|
|
LoadComponentAsync(new Disclaimer(), d => Push(d));
|
|
else
|
|
LoadComponentAsync(new Intro(), d => Push(d));
|
|
}
|
|
}
|
|
}
|