mirror of
https://github.com/ppy/osu.git
synced 2025-02-13 14:05:35 +08:00
Equalise work done in benchmarks to cover accessing normal properties
This commit is contained in:
parent
8f80a22ef9
commit
46efce8a67
@ -39,6 +39,29 @@ namespace osu.Game.Benchmarks
|
|||||||
_ = circles[i].SamplesBindable;
|
_ = circles[i].SamplesBindable;
|
||||||
_ = circles[i].StartTimeBindable;
|
_ = circles[i].StartTimeBindable;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_ = circles[i].Position;
|
||||||
|
_ = circles[i].Scale;
|
||||||
|
_ = circles[i].ComboIndex;
|
||||||
|
_ = circles[i].ComboOffset;
|
||||||
|
_ = circles[i].StackHeight;
|
||||||
|
_ = circles[i].LastInCombo;
|
||||||
|
_ = circles[i].ComboIndexWithOffsets;
|
||||||
|
_ = circles[i].IndexInCurrentCombo;
|
||||||
|
_ = circles[i].Samples;
|
||||||
|
_ = circles[i].StartTime;
|
||||||
|
_ = circles[i].Position;
|
||||||
|
_ = circles[i].Scale;
|
||||||
|
_ = circles[i].ComboIndex;
|
||||||
|
_ = circles[i].ComboOffset;
|
||||||
|
_ = circles[i].StackHeight;
|
||||||
|
_ = circles[i].LastInCombo;
|
||||||
|
_ = circles[i].ComboIndexWithOffsets;
|
||||||
|
_ = circles[i].IndexInCurrentCombo;
|
||||||
|
_ = circles[i].Samples;
|
||||||
|
_ = circles[i].StartTime;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return circles;
|
return circles;
|
||||||
@ -60,6 +83,13 @@ namespace osu.Game.Benchmarks
|
|||||||
_ = hits[i].SamplesBindable;
|
_ = hits[i].SamplesBindable;
|
||||||
_ = hits[i].StartTimeBindable;
|
_ = hits[i].StartTimeBindable;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_ = hits[i].Type;
|
||||||
|
_ = hits[i].IsStrong;
|
||||||
|
_ = hits[i].Samples;
|
||||||
|
_ = hits[i].StartTime;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return hits;
|
return hits;
|
||||||
@ -88,6 +118,20 @@ namespace osu.Game.Benchmarks
|
|||||||
_ = fruit[i].SamplesBindable;
|
_ = fruit[i].SamplesBindable;
|
||||||
_ = fruit[i].StartTimeBindable;
|
_ = fruit[i].StartTimeBindable;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_ = fruit[i].OriginalX;
|
||||||
|
_ = fruit[i].XOffset;
|
||||||
|
_ = fruit[i].Scale;
|
||||||
|
_ = fruit[i].ComboIndex;
|
||||||
|
_ = fruit[i].HyperDash;
|
||||||
|
_ = fruit[i].LastInCombo;
|
||||||
|
_ = fruit[i].ComboIndexWithOffsets;
|
||||||
|
_ = fruit[i].IndexInCurrentCombo;
|
||||||
|
_ = fruit[i].IndexInBeatmap;
|
||||||
|
_ = fruit[i].Samples;
|
||||||
|
_ = fruit[i].StartTime;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return fruit;
|
return fruit;
|
||||||
@ -108,6 +152,12 @@ namespace osu.Game.Benchmarks
|
|||||||
_ = notes[i].SamplesBindable;
|
_ = notes[i].SamplesBindable;
|
||||||
_ = notes[i].StartTimeBindable;
|
_ = notes[i].StartTimeBindable;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_ = notes[i].Column;
|
||||||
|
_ = notes[i].Samples;
|
||||||
|
_ = notes[i].StartTime;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return notes;
|
return notes;
|
||||||
|
Loading…
Reference in New Issue
Block a user