1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 06:57:39 +08:00

Add SummaryTimeline to Editor

This commit is contained in:
smoogipooo 2017-09-20 17:09:38 +09:00
parent f9568619e7
commit 7588f1b6ca

View File

@ -13,6 +13,8 @@ using osu.Framework.Graphics.Shapes;
using osu.Game.Graphics;
using osu.Game.Graphics.UserInterface;
using osu.Game.Screens.Edit.Menus;
using osu.Game.Screens.Edit.Components;
using OpenTK;
namespace osu.Game.Screens.Edit
{
@ -189,6 +191,23 @@ namespace osu.Game.Screens.Edit
}
}
});
Add(new FillFlowContainer
{
Name = "Bottom bar",
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
RelativeSizeAxes = Axes.X,
Height = 60,
Padding = new MarginPadding { Top = 5, Bottom = 5, Left = 10, Right = 10 },
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10, 0),
Children = new[]
{
new SummaryTimeline { RelativeSizeAxes = Axes.Both }
}
});
}
protected override void OnResuming(Screen last)