mirror of
https://github.com/osukey/osukey.git
synced 2025-07-01 08:20:00 +09:00
Apply remaining uncaught changes
This commit is contained in:
@ -19,6 +19,6 @@ namespace osu.Game.Audio
|
|||||||
|
|
||||||
public IEnumerable<string> LookupNames => new[] { sampleName };
|
public IEnumerable<string> LookupNames => new[] { sampleName };
|
||||||
|
|
||||||
public int Volume { get; set; } = 100;
|
public int Volume { get; } = 100;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Length of debounce for hover sound playback, in milliseconds. Default is 50ms.
|
/// Length of debounce for hover sound playback, in milliseconds. Default is 50ms.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public double HoverDebounceTime { get; set; } = 50;
|
public double HoverDebounceTime { get; } = 50;
|
||||||
|
|
||||||
protected readonly HoverSampleSet SampleSet;
|
protected readonly HoverSampleSet SampleSet;
|
||||||
|
|
||||||
|
@ -16,11 +16,7 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// How many leading zeroes the counter has.
|
/// How many leading zeroes the counter has.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public uint LeadingZeroes
|
public uint LeadingZeroes { get; }
|
||||||
{
|
|
||||||
get;
|
|
||||||
protected set;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Displays score.
|
/// Displays score.
|
||||||
|
@ -16,7 +16,7 @@ namespace osu.Game.Storyboards
|
|||||||
private readonly List<CommandLoop> loops = new List<CommandLoop>();
|
private readonly List<CommandLoop> loops = new List<CommandLoop>();
|
||||||
private readonly List<CommandTrigger> triggers = new List<CommandTrigger>();
|
private readonly List<CommandTrigger> triggers = new List<CommandTrigger>();
|
||||||
|
|
||||||
public string Path { get; set; }
|
public string Path { get; }
|
||||||
public bool IsDrawable => HasCommands;
|
public bool IsDrawable => HasCommands;
|
||||||
|
|
||||||
public Anchor Origin;
|
public Anchor Origin;
|
||||||
|
Reference in New Issue
Block a user