Merge remote-tracking branch 'refs/remotes/upstream/master' into project-restructure

# Conflicts:
#	osu.Game/Beatmaps/Objects/Osu/OsuBaseHit.cs
This commit is contained in:
Dean Herbert
2016-11-14 22:08:30 +09:00
2 changed files with 4 additions and 2 deletions

View File

@ -179,7 +179,9 @@ namespace osu.Game.Overlays
protected override bool OnDrag(InputState state)
{
Vector2 change = (state.Mouse.Position - state.Mouse.PositionMouseDown.Value);
change.X = -change.X;
if ((Anchor & Anchor.x2) > 0)
change.X = -change.X;
change *= (float)Math.Pow(change.Length, 0.7f) / change.Length;