mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 11:37:28 +08:00
Add template toolbar.
This commit is contained in:
parent
463f606004
commit
d93718d953
@ -1,4 +1,5 @@
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.GameModes;
|
||||
using osu.Framework.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Cursor;
|
||||
using osu.Framework.Graphics.Textures;
|
||||
@ -18,6 +19,7 @@ namespace osu.Game
|
||||
protected override string MainResourceFile => @"osu.Game.Resources.dll";
|
||||
|
||||
public Options Options;
|
||||
public Toolbar Toolbar;
|
||||
|
||||
internal APIAccess API;
|
||||
|
||||
@ -48,6 +50,7 @@ namespace osu.Game
|
||||
{
|
||||
Children = new Drawable[]
|
||||
{
|
||||
Toolbar = new Toolbar(),
|
||||
Options = new Options(),
|
||||
new OsuCursorContainer()
|
||||
}
|
||||
|
39
osu.Game/Overlays/Toolbar.cs
Normal file
39
osu.Game/Overlays/Toolbar.cs
Normal file
@ -0,0 +1,39 @@
|
||||
//Copyright (c) 2007-2016 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.Graphics;
|
||||
using osu.Framework.Graphics.Containers;
|
||||
using osu.Framework.Graphics.Drawables;
|
||||
using OpenTK;
|
||||
using OpenTK.Graphics;
|
||||
|
||||
namespace osu.Game.Overlays
|
||||
{
|
||||
public class Toolbar : Container
|
||||
{
|
||||
const float height = 50;
|
||||
|
||||
public override void Load()
|
||||
{
|
||||
base.Load();
|
||||
|
||||
Depth = float.MaxValue;
|
||||
SizeMode = InheritMode.X;
|
||||
Size = new Vector2(1, height);
|
||||
|
||||
Children = new Drawable[]
|
||||
{
|
||||
new Box
|
||||
{
|
||||
SizeMode = InheritMode.XY,
|
||||
Colour = new Color4(0.1f, 0.1f, 0.1f, 0.9f)
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
@ -84,6 +84,7 @@
|
||||
<Compile Include="OsuGame.cs" />
|
||||
<Compile Include="OsuGameBase.cs" />
|
||||
<Compile Include="Overlays\Options.cs" />
|
||||
<Compile Include="Overlays\Toolbar.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
Loading…
Reference in New Issue
Block a user