mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Replace "offset" term in combo index documentations with "index" instead
This commit is contained in:
parent
ee3791ccf2
commit
8600a3bf5b
@ -15,21 +15,21 @@ namespace osu.Game.Rulesets.Objects.Types
|
||||
Bindable<int> IndexInCurrentComboBindable { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The offset of this hitobject in the current combo.
|
||||
/// The index of this hitobject in the current combo.
|
||||
/// </summary>
|
||||
int IndexInCurrentCombo { get; set; }
|
||||
|
||||
Bindable<int> ComboIndexBindable { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The offset of this combo in relation to the beatmap.
|
||||
/// The index of this combo in relation to the beatmap.
|
||||
/// </summary>
|
||||
int ComboIndex { get; set; }
|
||||
|
||||
Bindable<int> ComboIndexWithOffsetsBindable { get; }
|
||||
|
||||
/// <summary>
|
||||
/// The offset of this combo in relation to the beatmap, with all aggregate <see cref="IHasCombo.ComboOffset"/>s applied.
|
||||
/// The index of this combo in relation to the beatmap, with all aggregate <see cref="IHasCombo.ComboOffset"/>s applied.
|
||||
/// This should be used instead of <see cref="ComboIndex"/> only when retrieving combo colours from the beatmap's skin.
|
||||
/// </summary>
|
||||
int ComboIndexWithOffsets { get; set; }
|
||||
|
Loading…
Reference in New Issue
Block a user