Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ppy
GitHub Repository: ppy/osu
Path: blob/master/osu.Game.Rulesets.Osu/Skinning/Argon/ArgonSliderScorePoint.cs
4919 views
// Copyright (c) ppy Pty Ltd <[email protected]>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.

using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Rulesets.Objects.Drawables;
using osuTK;
using osuTK.Graphics;

namespace osu.Game.Rulesets.Osu.Skinning.Argon
{
    public partial class ArgonSliderScorePoint : CircularContainer
    {
        private Bindable<Color4> accentColour = null!;

        public const float SIZE = 12;

        [BackgroundDependencyLoader]
        private void load(DrawableHitObject hitObject)
        {
            Masking = true;
            Origin = Anchor.Centre;
            Size = new Vector2(SIZE);
            BorderThickness = 3;
            BorderColour = Color4.White;
            Child = new Box
            {
                RelativeSizeAxes = Axes.Both,
                AlwaysPresent = true,
                Alpha = 0,
            };

            accentColour = hitObject.AccentColour.GetBoundCopy();
            accentColour.BindValueChanged(accent => BorderColour = accent.NewValue, true);
        }
    }
}