mirror of
https://github.com/osukey/osukey.git
synced 2025-05-29 17:37:23 +09:00
Changed control points set to private; Cleanup
This commit is contained in:
parent
d6c3a52494
commit
2f16174d3d
@ -28,8 +28,8 @@ namespace osu.Game.Graphics.Containers
|
|||||||
public class BeatSyncedContainer : Container
|
public class BeatSyncedContainer : Container
|
||||||
{
|
{
|
||||||
private int lastBeat;
|
private int lastBeat;
|
||||||
protected TimingControlPoint LastTimingPoint;
|
protected TimingControlPoint LastTimingPoint { get; private set; }
|
||||||
protected EffectControlPoint LastEffectPoint;
|
protected EffectControlPoint LastEffectPoint { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The amount of time before a beat we should fire <see cref="OnNewBeat(int, TimingControlPoint, EffectControlPoint, ChannelAmplitudes)"/>.
|
/// The amount of time before a beat we should fire <see cref="OnNewBeat(int, TimingControlPoint, EffectControlPoint, ChannelAmplitudes)"/>.
|
||||||
|
@ -388,9 +388,6 @@ namespace osu.Game.Screens.Menu
|
|||||||
|
|
||||||
protected override bool OnClick(ClickEvent e)
|
protected override bool OnClick(ClickEvent e)
|
||||||
{
|
{
|
||||||
//triangles.AccentColours = this.FindClosestParent<MainMenu>()!.GetBackgroundColours(2).Select(x => Graphics.Backgrounds.Triangles.InRange(x, 0)).ToArray();
|
|
||||||
//background.Colour = this.FindClosestParent<MainMenu>()!.GetBackgroundColours()[0];
|
|
||||||
|
|
||||||
if (Action?.Invoke() ?? true)
|
if (Action?.Invoke() ?? true)
|
||||||
sampleClick.Play();
|
sampleClick.Play();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user