// 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 osu.Framework.Graphics.Sprites; using OpenTK; namespace osu.Game.Modes.Taiko.Objects.Drawable { public class DrawableMajorBarLine : DrawableBarLine { public DrawableMajorBarLine(BarLine barLine) : base(barLine) { Add(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, -10), Size = new Vector2(-20), EdgeSmoothness = new Vector2(1), }, new EquilateralTriangle { Name = "Bottom", Anchor = Anchor.BottomCentre, Origin = Anchor.TopCentre, Position = new Vector2(0, 10), Size = new Vector2(20), EdgeSmoothness = new Vector2(1), } } }); Tracker.Alpha = 1f; } } }