Implement combo offsets

This commit is contained in:
smoogipoo
2018-08-15 11:47:31 +09:00
parent da3e2cfee2
commit 31f324945e
13 changed files with 38 additions and 7 deletions

View File

@ -24,6 +24,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
X = position.X,
NewCombo = newCombo,
ComboOffset = comboOffset
};
}
@ -33,6 +34,7 @@ namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
X = position.X,
NewCombo = newCombo,
ComboOffset = comboOffset,
ControlPoints = controlPoints,
Distance = length,
CurveType = curveType,
@ -45,7 +47,8 @@ namespace osu.Game.Rulesets.Objects.Legacy.Catch
{
return new ConvertSpinner
{
EndTime = endTime
EndTime = endTime,
ComboOffset = comboOffset
};
}