1
0
mirror of https://github.com/ppy/osu.git synced 2025-02-13 15:03:13 +08:00

CI fixes.

This commit is contained in:
smoogipooo 2017-04-21 20:42:13 +09:00
parent 5cdbb226f8
commit d7477955ac
3 changed files with 6 additions and 7 deletions

View File

@ -10,7 +10,6 @@ using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Testing;
using osu.Framework.Timing;
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Drawables;
using osu.Game.Rulesets.Osu.Judgements;
using osu.Game.Rulesets.Osu.Objects;

View File

@ -30,11 +30,11 @@ namespace osu.Game.Rulesets.Osu.Beatmaps
{
StartTime = original.StartTime,
Samples = original.Samples,
ControlPoints = curveData?.ControlPoints ?? null,
CurveType = curveData?.CurveType ?? CurveType.Catmull,
Distance = curveData?.Distance ?? 0,
RepeatSamples = curveData?.RepeatSamples ?? null,
RepeatCount = curveData?.RepeatCount ?? 1,
ControlPoints = curveData.ControlPoints,
CurveType = curveData.CurveType,
Distance = curveData.Distance,
RepeatSamples = curveData.RepeatSamples,
RepeatCount = curveData.RepeatCount,
Position = positionData?.Position ?? Vector2.Zero,
NewCombo = comboData?.NewCombo ?? false
};

View File

@ -25,7 +25,7 @@ namespace osu.Game.Rulesets.Objects
/// <summary>
/// The samples to be played when this hit object is hit.
/// <para>
/// In the case of <see cref="CurvedHitObject"/> types, this is the sample of the curve body
/// In the case of <see cref="IHasRepeats"/> types, this is the sample of the curve body
/// and can be treated as the default samples for the hit object.
/// </para>
/// </summary>