1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Update to match base branch.

This commit is contained in:
smoogipooo 2017-05-19 17:51:59 +09:00
parent 0a596ef1e4
commit e76cb4cc31

View File

@ -11,6 +11,7 @@ using osu.Game.Rulesets.Objects.Types;
using osu.Game.Rulesets.Mania.Beatmaps.Patterns; using osu.Game.Rulesets.Mania.Beatmaps.Patterns;
using osu.Game.Rulesets.Mania.MathUtils; using osu.Game.Rulesets.Mania.MathUtils;
using osu.Game.Database; using osu.Game.Database;
using osu.Game.Rulesets.Mania.Beatmaps.Patterns.Legacy;
namespace osu.Game.Rulesets.Mania.Beatmaps namespace osu.Game.Rulesets.Mania.Beatmaps
{ {
@ -83,28 +84,26 @@ namespace osu.Game.Rulesets.Mania.Beatmaps
// Following lines currently commented out to appease resharper // Following lines currently commented out to appease resharper
//Patterns.PatternGenerator conversion = null; Patterns.PatternGenerator conversion = null;
if (distanceData != null) if (distanceData != null)
{ {
// Slider // Slider
} }
else if (endTimeData != null) else if (endTimeData != null)
{ conversion = new EndTimeObjectPatternGenerator(random, original, beatmap);
// Spinner
}
else if (positionData != null) else if (positionData != null)
{ {
// Circle // Circle
} }
//if (conversion == null) if (conversion == null)
return null; return null;
//Pattern newPattern = conversion.Generate(); Pattern newPattern = conversion.Generate();
//lastPattern = newPattern; lastPattern = newPattern;
//return newPattern.HitObjects; return newPattern.HitObjects;
} }
/// <summary> /// <summary>