// Copyright (c) 2007-2017 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using OpenTK; using osu.Framework.Graphics.Shapes; namespace osu.Game.Rulesets.Taiko.Objects.Drawables { public class DrawableBarLineMajor : DrawableBarLine { /// /// The vertical offset of the triangles from the line tracker. /// private const float triangle_offfset = 10f; /// /// The size of the triangles. /// private const float triangle_size = 20f; private readonly Container triangleContainer; public DrawableBarLineMajor(BarLine barLine) : base(barLine) { Add(triangleContainer = new Container { Anchor = Anchor.Centre, Origin = Anchor.Centre, RelativeSizeAxes = Axes.Both, Children = new[] { new EquilateralTriangle { Name = "Top", Anchor = Anchor.TopCentre, Origin = Anchor.TopCentre, Position = new Vector2(0, -triangle_offfset), Size = new Vector2(-triangle_size), EdgeSmoothness = new Vector2(1), }, new EquilateralTriangle { Name = "Bottom", Anchor = Anchor.BottomCentre, Origin = Anchor.TopCentre, Position = new Vector2(0, triangle_offfset), Size = new Vector2(triangle_size), EdgeSmoothness = new Vector2(1), } } }); Tracker.Alpha = 1f; } protected override void LoadComplete() { base.LoadComplete(); using (triangleContainer.BeginAbsoluteSequence(HitObject.StartTime)) triangleContainer.FadeOut(150); } } }