mirror of
https://github.com/osukey/osukey.git
synced 2025-05-30 01:47:30 +09:00
Name tuple items
This commit is contained in:
parent
9c53430a0f
commit
f08b523abf
@ -16,7 +16,7 @@ namespace osu.Game.Skinning
|
|||||||
{
|
{
|
||||||
private readonly ISampleInfo[] hitSamples;
|
private readonly ISampleInfo[] hitSamples;
|
||||||
|
|
||||||
private List<(AdjustableProperty, BindableDouble)> adjustments;
|
private List<(AdjustableProperty property, BindableDouble bindable)> adjustments;
|
||||||
|
|
||||||
private SampleChannel[] channels;
|
private SampleChannel[] channels;
|
||||||
|
|
||||||
@ -88,7 +88,7 @@ namespace osu.Game.Skinning
|
|||||||
|
|
||||||
if (adjustments != null)
|
if (adjustments != null)
|
||||||
foreach (var adjustment in adjustments)
|
foreach (var adjustment in adjustments)
|
||||||
ch.AddAdjustment(adjustment.Item1, adjustment.Item2);
|
ch.AddAdjustment(adjustment.property, adjustment.bindable);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ch;
|
return ch;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user